diff --git a/crates/nu-command/src/strings/base/base64.rs b/crates/nu-command/src/strings/base/base64.rs index 38f6dac86f..6c914c75c3 100644 --- a/crates/nu-command/src/strings/base/base64.rs +++ b/crates/nu-command/src/strings/base/base64.rs @@ -42,7 +42,7 @@ impl Command for DecodeBase64 { } fn signature(&self) -> Signature { - Signature::build("decode base64") + Signature::build("decode new-base64") .input_output_types(vec![(Type::String, Type::Binary)]) .allow_variants_without_examples(true) .switch("url", "Decode the URL-safe Base64 version.", None) @@ -113,7 +113,7 @@ impl Command for EncodeBase64 { } fn signature(&self) -> Signature { - Signature::build("encode base64") + Signature::build("encode new-base64") .input_output_types(vec![ (Type::String, Type::String), (Type::Binary, Type::String),