From eca2975b3dba3f6226b7df9ae0fafb7509cc9c8f Mon Sep 17 00:00:00 2001 From: Andrej Kolchin Date: Tue, 6 Aug 2024 14:18:49 +0300 Subject: [PATCH] Fix a typo in an example (#13548) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Accidentally used the old name of the command, `random bytes`, instead of the correct one. Co-authored-by: Andrej KolĨin --- crates/nu-command/src/random/binary.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/random/binary.rs b/crates/nu-command/src/random/binary.rs index 57fd8b01a7..aacab071a8 100644 --- a/crates/nu-command/src/random/binary.rs +++ b/crates/nu-command/src/random/binary.rs @@ -45,7 +45,7 @@ impl Command for SubCommand { fn examples(&self) -> Vec { vec![Example { description: "Generate 16 random bytes", - example: "random bytes 16", + example: "random binary 16", result: None, }] }