Skip to content

Commit 70e719a

Browse files
committed
CLEANUP: Fix a few comment typos.
1 parent 4ae7672 commit 70e719a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

types.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func (n *NullBool) MarshalJSON() ([]byte, error) {
8585
return nullString, nil
8686
}
8787

88-
// UnmarshalJSON correctly deserialize a NullString from JSON
88+
// UnmarshalJSON correctly deserializes a NullString from JSON
8989
func (n *NullString) UnmarshalJSON(b []byte) error {
9090
var s interface{}
9191
if err := json.Unmarshal(b, &s); err != nil {
@@ -94,7 +94,7 @@ func (n *NullString) UnmarshalJSON(b []byte) error {
9494
return n.Scan(s)
9595
}
9696

97-
// UnmarshalJSON correctly deserialize a NullInt64 from JSON
97+
// UnmarshalJSON correctly deserializes a NullInt64 from JSON
9898
func (n *NullInt64) UnmarshalJSON(b []byte) error {
9999
var s interface{}
100100
if err := json.Unmarshal(b, &s); err != nil {
@@ -103,7 +103,7 @@ func (n *NullInt64) UnmarshalJSON(b []byte) error {
103103
return n.Scan(s)
104104
}
105105

106-
// UnmarshalJSON correctly deserialize a NullFloat64 from JSON
106+
// UnmarshalJSON correctly deserializes a NullFloat64 from JSON
107107
func (n *NullFloat64) UnmarshalJSON(b []byte) error {
108108
var s interface{}
109109
if err := json.Unmarshal(b, &s); err != nil {
@@ -112,7 +112,7 @@ func (n *NullFloat64) UnmarshalJSON(b []byte) error {
112112
return n.Scan(s)
113113
}
114114

115-
// UnmarshalJSON correctly deserialize a NullTime from JSON
115+
// UnmarshalJSON correctly deserializes a NullTime from JSON
116116
func (n *NullTime) UnmarshalJSON(b []byte) error {
117117
// scan for null
118118
if bytes.Equal(b, nullString) {
@@ -126,7 +126,7 @@ func (n *NullTime) UnmarshalJSON(b []byte) error {
126126
return n.Scan(t)
127127
}
128128

129-
// UnmarshalJSON correctly deserialize a NullBool from JSON
129+
// UnmarshalJSON correctly deserializes a NullBool from JSON
130130
func (n *NullBool) UnmarshalJSON(b []byte) error {
131131
var s interface{}
132132
if err := json.Unmarshal(b, &s); err != nil {

types_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func TestNullTypeJSONMarshal(t *testing.T) {
7777
assert.NoError(t, err)
7878
assert.Equal(t, test.expectedJSON, rawJSON)
7979

80-
// Umarshal it back
80+
// Unmarshal it back
8181
newRecord := &nullTypedRecord{}
8282
err = json.Unmarshal([]byte(rawJSON), newRecord)
8383
assert.NoError(t, err)

0 commit comments

Comments
 (0)