From ce64b67a61db3011ae283e922a631bc7e40ae8a3 Mon Sep 17 00:00:00 2001 From: homersimpsons Date: Tue, 11 Feb 2020 23:08:10 +0100 Subject: [PATCH] Fix typo in xsv cat -h #194 --- src/cmd/cat.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmd/cat.rs b/src/cmd/cat.rs index 79fafdda..56322693 100644 --- a/src/cmd/cat.rs +++ b/src/cmd/cat.rs @@ -8,8 +8,8 @@ static USAGE: &'static str = " Concatenates CSV data by column or by row. When concatenating by column, the columns will be written in the same order as -the inputs given. The number of rows in the result is always equivalent to to -the minimum number of rows across all given CSV data. (This behavior can be +the inputs given. The number of rows in the result is always equivalent to the +minimum number of rows across all given CSV data. (This behavior can be reversed with the '--pad' flag.) When concatenating by row, all CSV data must have the same number of columns.