mirror of
https://github.com/nushell/nushell
synced 2025-01-13 21:55:07 +00:00
type-o in signature (#633)
This commit is contained in:
parent
2320987862
commit
18ddcdcb97
1 changed files with 2 additions and 2 deletions
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue