1
0
mirror of https://github.com/nushell/nushell.git synced 2025-05-12 05:54:27 +02:00

Add count to uniq search terms ()

Adds "count" to uniq's search terms, to facilitate discovery of the
`--count` option
This commit is contained in:
132ikl 2024-10-17 05:19:59 -04:00 committed by GitHub
parent 71b49c3374
commit 6230a62e9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,7 +46,7 @@ impl Command for Uniq {
} }
fn search_terms(&self) -> Vec<&str> { fn search_terms(&self) -> Vec<&str> {
vec!["distinct", "deduplicate"] vec!["distinct", "deduplicate", "count"]
} }
fn run( fn run(