From 18ddcdcb97ead8589efcdbfe563dc5440c4f76a2 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Fri, 31 Dec 2021 09:54:30 -0600 Subject: [PATCH] type-o in signature (#633) --- crates/nu-command/src/formats/from/tsv.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-command/src/formats/from/tsv.rs b/crates/nu-command/src/formats/from/tsv.rs index 18bc8c69..991c58a3 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(