From 7cc1a8645996f36d2db8486f82d2a51d92fe27d3 Mon Sep 17 00:00:00 2001 From: Direwolfesp <116882710+Direwolfesp@users.noreply.github.com> Date: Sun, 3 Aug 2025 13:27:03 +0200 Subject: [PATCH] typo: `help format filesize` has a wrong example (#16336) Just a small one letter typo in the help command. It should be `kB` image --- crates/nu-command/src/strings/format/filesize.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/strings/format/filesize.rs b/crates/nu-command/src/strings/format/filesize.rs index b98bc4aa09..57a60fc1c7 100644 --- a/crates/nu-command/src/strings/format/filesize.rs +++ b/crates/nu-command/src/strings/format/filesize.rs @@ -99,7 +99,7 @@ impl Command for FormatFilesize { vec![ Example { description: "Convert the size column to KB", - example: "ls | format filesize KB size", + example: "ls | format filesize kB size", result: None, }, Example {