diff --git a/crates/nu-command/src/filters/each_group.rs b/crates/nu-command/src/filters/each_group.rs index b3737f001..f7f8153da 100644 --- a/crates/nu-command/src/filters/each_group.rs +++ b/crates/nu-command/src/filters/each_group.rs @@ -43,7 +43,7 @@ impl Command for EachGroup { vec![Example { example: "echo [1 2 3 4] | each group 2 { $it.0 + $it.1 }", - description: "Multiplies elements in list", + description: "Echo the sum of each pair", result: Some(Value::List { vals: stream_test_1, span: Span::test_data(),