type-o in signature (#633)

This commit is contained in:
Darren Schroeder 2021-12-31 09:54:30 -06:00 committed by GitHub
parent 2320987862
commit 18ddcdcb97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ impl Command for FromTsv {
} }
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("from csv") Signature::build("from tsv")
.switch( .switch(
"noheaders", "noheaders",
"don't treat the first row as column names", "don't treat the first row as column names",
@ -23,7 +23,7 @@ impl Command for FromTsv {
} }
fn usage(&self) -> &str { fn usage(&self) -> &str {
"Parse text as .csv and create table." "Parse text as .tsv and create table."
} }
fn run( fn run(