File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ var TrueValue = &boolT{true}
29
29
// FalseValue is the JSON false value
30
30
var FalseValue = & boolT {false }
31
31
32
- // Bool is JSON boolean struct
32
+ // Bool is JSON boolean value
33
33
type Bool interface {
34
34
Value
35
35
@@ -67,7 +67,7 @@ func (*boolT) Type() Type {
67
67
68
68
// ================ Number ================
69
69
70
- // Number is JSON number struct
70
+ // Number is JSON number value
71
71
type Number interface {
72
72
Value
73
73
@@ -102,7 +102,7 @@ func (*numberT) Type() Type {
102
102
103
103
// ================ String ================
104
104
105
- // String is JSON string struct
105
+ // String is JSON string value
106
106
type String interface {
107
107
Value
108
108
@@ -137,7 +137,7 @@ func (*stringT) Type() Type {
137
137
138
138
// ================ Array ================
139
139
140
- // Array is JSON array struct
140
+ // Array is JSON array value
141
141
type Array interface {
142
142
Value
143
143
@@ -175,7 +175,7 @@ func (v *arrayT) Type() Type {
175
175
176
176
// ================ Object ================
177
177
178
- // Object is JSON object struct
178
+ // Object is JSON object value
179
179
type Object interface {
180
180
Value
181
181
You can’t perform that action at this time.
0 commit comments