Skip to content

Commit

Permalink
Fix a typo in an example (nushell#13548)
Browse files Browse the repository at this point in the history
Accidentally used the old name of the command, `random bytes`, instead
of the correct one.

Co-authored-by: Andrej Kolčin <[email protected]>
  • Loading branch information
KAAtheWiseGit and KAAtheWiseGit authored Aug 6, 2024
1 parent 1cd0544 commit eca2975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/nu-command/src/random/binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl Command for SubCommand {
fn examples(&self) -> Vec<Example> {
vec![Example {
description: "Generate 16 random bytes",
example: "random bytes 16",
example: "random binary 16",
result: None,
}]
}
Expand Down

0 comments on commit eca2975

Please sign in to comment.