diff --git a/decoder.go b/decoder.go index 9418ba7..9b9d7cb 100644 --- a/decoder.go +++ b/decoder.go @@ -14,7 +14,7 @@ type Decoder struct { done bool } -// NewDecoder generates a new CodeOwnersScanner instance. The reader should be a reader containing the contents of the CODEOWNERS file +// NewDecoder generates a new Decoder instance. The reader should contain the contents of the CODEOWNERS file func NewDecoder(r io.Reader) *Decoder { return &Decoder{ scanner: bufio.NewScanner(r),