From ee734873ba3eec05b239bf8b55f77351768cb015 Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Sat, 1 Aug 2020 14:38:45 -0400 Subject: [PATCH] Fix no longer working histogram example (#2271) * Fix no longer working histogram example * Oops --- crates/nu-cli/src/commands/histogram.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-cli/src/commands/histogram.rs b/crates/nu-cli/src/commands/histogram.rs index 1e6fb4244e..63a99acab9 100644 --- a/crates/nu-cli/src/commands/histogram.rs +++ b/crates/nu-cli/src/commands/histogram.rs @@ -63,7 +63,7 @@ impl WholeStreamCommand for Histogram { }, Example { description: "Get a histogram for a list of numbers", - example: "echo [1 2 3 1 1 1 2 2 1 1] | histogram", + example: "echo [1 2 3 1 1 1 2 2 1 1] | wrap values | histogram values", result: None, }, ]