diff --git a/crates/nu-cli/src/commands/prepend.rs b/crates/nu-cli/src/commands/prepend.rs index 9ac2732ccb..272777577b 100644 --- a/crates/nu-cli/src/commands/prepend.rs +++ b/crates/nu-cli/src/commands/prepend.rs @@ -38,8 +38,8 @@ impl WholeStreamCommand for Prepend { fn examples(&self) -> &[Example] { &[Example { - description: "Add something to the end of a list or table", - example: "echo [2 3 4] | prepend 4", + description: "Add something to the beginning of a list or table", + example: "echo [2 3 4] | prepend 1", }] } }