Fix a typo in an example (#13548)

Accidentally used the old name of the command, `random bytes`, instead
of the correct one.

Co-authored-by: Andrej Kolčin <self@kaathewise.net>
This commit is contained in:
Andrej Kolchin 2024-08-06 14:18:49 +03:00 committed by GitHub
parent 1cd0544a3f
commit eca2975b3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,
}]
}