Darien Raymond 9 lat temu
rodzic
commit
09c0fa558a
1 zmienionych plików z 2 dodań i 0 usunięć
  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 {