diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-03 11:50:25 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-03 11:50:25 +0200 |
commit | 1d0a1f48bb8b3a9544a3abf2ed0bc8d3d6d0bf5a (patch) | |
tree | 9b3b1787800cadc520ec81acb37f6c7aa94ae49f /skate/xio | |
parent | f70b8304afbe0edeb570ecde90f05cf1d36cfffa (diff) | |
download | refcat-1d0a1f48bb8b3a9544a3abf2ed0bc8d3d6d0bf5a.tar.gz refcat-1d0a1f48bb8b3a9544a3abf2ed0bc8d3d6d0bf5a.zip |
update docs
Diffstat (limited to 'skate/xio')
-rw-r--r-- | skate/xio/util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skate/xio/util.go b/skate/xio/util.go index de3afb4..9967540 100644 --- a/skate/xio/util.go +++ b/skate/xio/util.go @@ -19,7 +19,7 @@ func OpenTwo(f1, f2 string) (g1, g2 *os.File, err error) { return g1, g2, nil } -// TabsToMapFile turns columns from a file into a map. +// TabsToMapFile turns two columns from a tabular file into a map. func TabsToMapFile(filename, sep string, kCol, vCol int) (map[string]string, error) { f, err := os.Open(filename) if err != nil { |