summaryrefslogtreecommitdiff
path: root/src/lib/json/struct.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/json/struct.go')
-rw-r--r--src/lib/json/struct.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/json/struct.go b/src/lib/json/struct.go
index 97a2ad18a..167fcbff0 100644
--- a/src/lib/json/struct.go
+++ b/src/lib/json/struct.go
@@ -202,7 +202,7 @@ func (b *_StructBuilder) Key(k string) Builder {
return nobuilder
}
-export func Unmarshal(s string, val interface{}) (ok bool, errtok string) {
+func Unmarshal(s string, val interface{}) (ok bool, errtok string) {
var errindx int;
var val1 interface{};
b := &_StructBuilder{ reflect.NewValue(val) };