From b243b3ee1d5325070c89aade5f9228c337e2d0f1 Mon Sep 17 00:00:00 2001 From: Mark Volkmann Date: Fri, 26 Mar 2021 08:11:41 -0500 Subject: [PATCH] fixed typo in help text (#3216) --- crates/nu-command/src/commands/headers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/commands/headers.rs b/crates/nu-command/src/commands/headers.rs index 156b5585cb..a9e2650ee8 100644 --- a/crates/nu-command/src/commands/headers.rs +++ b/crates/nu-command/src/commands/headers.rs @@ -29,7 +29,7 @@ impl WholeStreamCommand for Headers { fn examples(&self) -> Vec { vec![ Example { - description: "Create headers for a raw string", + description: "Create headers from a raw string", example: r#"echo "a b c|1 2 3" | split row "|" | split column " " | headers"#, result: None, },