Skip to content

Commit 8c51e1f

Browse files
committed
refactor: fix comments
1 parent 73767a8 commit 8c51e1f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dsl/types/json.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var TrueValue = &boolT{true}
2929
// FalseValue is the JSON false value
3030
var FalseValue = &boolT{false}
3131

32-
// Bool is JSON boolean struct
32+
// Bool is JSON boolean value
3333
type Bool interface {
3434
Value
3535

@@ -67,7 +67,7 @@ func (*boolT) Type() Type {
6767

6868
// ================ Number ================
6969

70-
// Number is JSON number struct
70+
// Number is JSON number value
7171
type Number interface {
7272
Value
7373

@@ -102,7 +102,7 @@ func (*numberT) Type() Type {
102102

103103
// ================ String ================
104104

105-
// String is JSON string struct
105+
// String is JSON string value
106106
type String interface {
107107
Value
108108

@@ -137,7 +137,7 @@ func (*stringT) Type() Type {
137137

138138
// ================ Array ================
139139

140-
// Array is JSON array struct
140+
// Array is JSON array value
141141
type Array interface {
142142
Value
143143

@@ -175,7 +175,7 @@ func (v *arrayT) Type() Type {
175175

176176
// ================ Object ================
177177

178-
// Object is JSON object struct
178+
// Object is JSON object value
179179
type Object interface {
180180
Value
181181

0 commit comments

Comments
 (0)