fix NewFeeder function help
This will fix the Go Help for function NewFeeder
This commit is contained in:
+1
-1
@@ -28,7 +28,7 @@ func NewFeederString(s string) *Feeder {
|
|||||||
return NewFeeder(strings.NewReader(s))
|
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 {
|
func NewFeeder(in io.Reader) *Feeder {
|
||||||
rd, ok := in.(io.RuneReader)
|
rd, ok := in.(io.RuneReader)
|
||||||
if !ok {
|
if !ok {
|
||||||
|
|||||||
Reference in New Issue
Block a user