aboutsummaryrefslogtreecommitdiff
path: root/format/tsv
diff options
context:
space:
mode:
Diffstat (limited to 'format/tsv')
-rw-r--r--format/tsv/reader.ha2
1 files changed, 1 insertions, 1 deletions
diff --git a/format/tsv/reader.ha b/format/tsv/reader.ha
index 326e24b..4422b9f 100644
--- a/format/tsv/reader.ha
+++ b/format/tsv/reader.ha
@@ -13,7 +13,7 @@ export fn readrecords(r: io::handle) ([][]str | io::error | utf8::invalid) = {
let records: [][]str = [];
for (const line: str => bufio::scan_line(&sc)?) {
- append(records, strings::dupall(strings::split(line, "\t")));
+ append(records, strings::dupall(strings::split(line, "\t")))!;
};
return records;
};