Darien Raymond %!s(int64=9) %!d(string=hai) anos
pai
achega
09c0fa558a
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      tools/conf/json/reader.go

+ 2 - 0
tools/conf/json/reader.go

@@ -20,11 +20,13 @@ const (
 	StateMultilineCommentStar
 )
 
+// Reader is a JSON reader which allows comments.
 type Reader struct {
 	io.Reader
 	state State
 }
 
+// Read implements io.Reader.Read().
 func (v *Reader) Read(b []byte) (int, error) {
 	n, err := v.Reader.Read(b)
 	if err != nil {