Skip to content

Commit

Permalink
extract rows named
Browse files Browse the repository at this point in the history
  • Loading branch information
RangelReale committed Oct 14, 2023
1 parent 613f58c commit 89f537e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion table.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func (d *Data) ExtractRows(f func(table *Table, row Row) (bool, error)) (*Data,
return data, nil
}

// ExtractRowsNamed extract rows matched by the callback.
// ExtractRowsNamed extract rows matched by the callback into a named map.
func (d *Data) ExtractRowsNamed(f func(table *Table, row Row) (bool, string, error)) (map[string]Row, error) {
ret := map[string]Row{}
var ferr error
Expand Down

0 comments on commit 89f537e

Please sign in to comment.