summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--decode.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/decode.go b/decode.go
index 44eaba4..fd4a31c 100644
--- a/decode.go
+++ b/decode.go
@@ -1153,10 +1153,10 @@ func (dec *Decoder) decodeArray(gTyp reflect.Type, decodeMember func() *DecodeEr
}
}
-// DecodeString is a helper function to eas implementing the Decodable
-// interface; allowing the lowmemjson package to handle decoding
-// character escapes and such, while the Decodable only needs to
-// handle what to do with the decoded runes.
+// DecodeString is a helper function to ease implementing the
+// Decodable interface; allowing the lowmemjson package to handle
+// decoding character escapes and such, while the Decodable only needs
+// to handle what to do with the decoded runes.
//
// Outside of implementing Decodable.DecodeJSON methods, callers
// should instead simply use NewDecoder(r).Decode(&val) rather than