diff options
Diffstat (limited to 'skate/map.go')
-rw-r--r-- | skate/map.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skate/map.go b/skate/map.go index b06bf96..5584371 100644 --- a/skate/map.go +++ b/skate/map.go @@ -40,7 +40,7 @@ type PartialDoc struct { // doc). We want fields, but we do not want to bake in TSV into each function. type Mapper func([]byte) ([][]byte, error) -// AsTSV serialized the result of a field mapper as AsTSV. This is a slim adapter, +// AsTSV serializes the result of a field mapper as TSV. This is a slim adapter, // e.g. to parallel.Processor, which expects this function signature. func (f Mapper) AsTSV(p []byte) ([]byte, error) { fields, err := f(p) |