mirror of
https://github.com/nushell/nushell
synced 2024-12-29 06:23:11 +00:00
Fix sort signature (#5055)
This commit is contained in:
parent
1d2d31580b
commit
fa0400c3f2
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ impl Command for Sort {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn signature(&self) -> nu_protocol::Signature {
|
fn signature(&self) -> nu_protocol::Signature {
|
||||||
Signature::build("sort-by")
|
Signature::build("sort")
|
||||||
.switch("reverse", "Sort in reverse order", Some('r'))
|
.switch("reverse", "Sort in reverse order", Some('r'))
|
||||||
.switch(
|
.switch(
|
||||||
"insensitive",
|
"insensitive",
|
||||||
|
|
Loading…
Reference in a new issue