mirror of
https://github.com/nushell/nushell
synced 2024-12-28 05:53:09 +00:00
Merge pull request #253 from nushell/par_each_example
Fix par-each example
This commit is contained in:
commit
9995cbc03b
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ impl Command for ParEach {
|
|||
|
||||
fn examples(&self) -> Vec<Example> {
|
||||
vec![Example {
|
||||
example: "[1 2 3] | each { 2 * $it }",
|
||||
example: "[1 2 3] | par-each { 2 * $it }",
|
||||
description: "Multiplies elements in list",
|
||||
result: None,
|
||||
}]
|
||||
|
|
Loading…
Reference in a new issue