From 1e4678f92997cb8facc22b1abd7d274c2eb47979 Mon Sep 17 00:00:00 2001 From: JT Date: Fri, 18 Jun 2021 17:07:31 +1200 Subject: [PATCH] Fix the ignore example (#3644) --- crates/nu-command/src/commands/ignore.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-command/src/commands/ignore.rs b/crates/nu-command/src/commands/ignore.rs index c9b8063922..9283a48858 100644 --- a/crates/nu-command/src/commands/ignore.rs +++ b/crates/nu-command/src/commands/ignore.rs @@ -28,8 +28,8 @@ impl WholeStreamCommand for Ignore { fn examples(&self) -> Vec { vec![Example { - description: "echo done | ignore", - example: r#"echo "There are seven words in this sentence" | size"#, + description: "Ignore the output of an echo command", + example: r#"echo done | ignore"#, result: None, }] }