Darien Raymond hace 9 años
padre
commit
09c0fa558a
Se han modificado 1 ficheros con 2 adiciones y 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 {