Skip to content

Commit

Permalink
Fix Decoder docs (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmenezes authored Jul 21, 2020
1 parent eec2566 commit c94a6b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit c94a6b9

Please sign in to comment.