fix NewFeeder function help

This will fix the Go Help for function NewFeeder
This commit is contained in:
2021-06-29 15:22:11 +03:00
committed by Alejandro Mery
parent 23f53c4da7
commit 65f2605a8a
+1 -1
View File
@@ -28,7 +28,7 @@ func NewFeederString(s string) *Feeder {
return NewFeeder(strings.NewReader(s))
}
// NewFeederString creates a new Feeder using a Reader as input
// NewFeeder creates a new Feeder using a Reader as input
func NewFeeder(in io.Reader) *Feeder {
rd, ok := in.(io.RuneReader)
if !ok {