From a4414e41ec65bcbac07ae998f69de2d6212699cf Mon Sep 17 00:00:00 2001 From: Andrej Kolchin Date: Thu, 1 Aug 2024 15:32:28 +0300 Subject: [PATCH] Add a `new-` prefix to base64 commands --- crates/nu-command/src/strings/base/base64.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-command/src/strings/base/base64.rs b/crates/nu-command/src/strings/base/base64.rs index c859c64fcc..38f6dac86f 100644 --- a/crates/nu-command/src/strings/base/base64.rs +++ b/crates/nu-command/src/strings/base/base64.rs @@ -38,7 +38,7 @@ pub struct DecodeBase64; impl Command for DecodeBase64 { fn name(&self) -> &str { - "decode base64" + "decode new-base64" } fn signature(&self) -> Signature { @@ -109,7 +109,7 @@ pub struct EncodeBase64; impl Command for EncodeBase64 { fn name(&self) -> &str { - "encode base64" + "encode new-base64" } fn signature(&self) -> Signature {