@@ -85,7 +85,7 @@ func (n *NullBool) MarshalJSON() ([]byte, error) {
85
85
return nullString , nil
86
86
}
87
87
88
- // UnmarshalJSON correctly deserialize a NullString from JSON
88
+ // UnmarshalJSON correctly deserializes a NullString from JSON
89
89
func (n * NullString ) UnmarshalJSON (b []byte ) error {
90
90
var s interface {}
91
91
if err := json .Unmarshal (b , & s ); err != nil {
@@ -94,7 +94,7 @@ func (n *NullString) UnmarshalJSON(b []byte) error {
94
94
return n .Scan (s )
95
95
}
96
96
97
- // UnmarshalJSON correctly deserialize a NullInt64 from JSON
97
+ // UnmarshalJSON correctly deserializes a NullInt64 from JSON
98
98
func (n * NullInt64 ) UnmarshalJSON (b []byte ) error {
99
99
var s interface {}
100
100
if err := json .Unmarshal (b , & s ); err != nil {
@@ -103,7 +103,7 @@ func (n *NullInt64) UnmarshalJSON(b []byte) error {
103
103
return n .Scan (s )
104
104
}
105
105
106
- // UnmarshalJSON correctly deserialize a NullFloat64 from JSON
106
+ // UnmarshalJSON correctly deserializes a NullFloat64 from JSON
107
107
func (n * NullFloat64 ) UnmarshalJSON (b []byte ) error {
108
108
var s interface {}
109
109
if err := json .Unmarshal (b , & s ); err != nil {
@@ -112,7 +112,7 @@ func (n *NullFloat64) UnmarshalJSON(b []byte) error {
112
112
return n .Scan (s )
113
113
}
114
114
115
- // UnmarshalJSON correctly deserialize a NullTime from JSON
115
+ // UnmarshalJSON correctly deserializes a NullTime from JSON
116
116
func (n * NullTime ) UnmarshalJSON (b []byte ) error {
117
117
// scan for null
118
118
if bytes .Equal (b , nullString ) {
@@ -126,7 +126,7 @@ func (n *NullTime) UnmarshalJSON(b []byte) error {
126
126
return n .Scan (t )
127
127
}
128
128
129
- // UnmarshalJSON correctly deserialize a NullBool from JSON
129
+ // UnmarshalJSON correctly deserializes a NullBool from JSON
130
130
func (n * NullBool ) UnmarshalJSON (b []byte ) error {
131
131
var s interface {}
132
132
if err := json .Unmarshal (b , & s ); err != nil {
0 commit comments