forked from extern/nushell
Fix doc and code comment typos (#14366)
# User-Facing Changes * Fixes `polars value-counts --column` help text typo * Fixes `polars agg-groups` help text typo
This commit is contained in:
@ -34,7 +34,7 @@ impl PluginCommand for ExprAggGroups {
|
||||
|
||||
fn examples(&self) -> Vec<Example> {
|
||||
vec![Example {
|
||||
description: "Get the groiup index of the group by operations.",
|
||||
description: "Get the group index of the group by operations.",
|
||||
example: r#"[[group value]; [one 94] [one 95] [one 96] [two 97] [two 98] [two 99]]
|
||||
| polars into-df
|
||||
| polars group-by group
|
||||
|
@ -28,7 +28,7 @@ impl PluginCommand for ValueCount {
|
||||
.named(
|
||||
"column",
|
||||
SyntaxShape::String,
|
||||
"Provide a custom name for the coutn column",
|
||||
"Provide a custom name for the count column",
|
||||
Some('c'),
|
||||
)
|
||||
.switch("sort", "Whether or not values should be sorted", Some('s'))
|
||||
|
Reference in New Issue
Block a user