diff --git a/crates/nu-command/src/formats/from/tsv.rs b/crates/nu-command/src/formats/from/tsv.rs index 18bc8c6972..991c58a312 100644 --- a/crates/nu-command/src/formats/from/tsv.rs +++ b/crates/nu-command/src/formats/from/tsv.rs @@ -13,7 +13,7 @@ impl Command for FromTsv { } fn signature(&self) -> Signature { - Signature::build("from csv") + Signature::build("from tsv") .switch( "noheaders", "don't treat the first row as column names", @@ -23,7 +23,7 @@ impl Command for FromTsv { } fn usage(&self) -> &str { - "Parse text as .csv and create table." + "Parse text as .tsv and create table." } fn run(