From ba8587ec486df3e226e36dbe439637eba249155d Mon Sep 17 00:00:00 2001 From: sholderbach Date: Thu, 6 Jun 2024 22:49:43 +0200 Subject: [PATCH] Move `format date` to `Category::Strings` The rest of the `format` commands live there. Closes https://github.com/nushell/nushell.github.io/issues/1435 --- crates/nu-command/src/strings/format/date.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/strings/format/date.rs b/crates/nu-command/src/strings/format/date.rs index f1a081d842..1aaf1fb851 100644 --- a/crates/nu-command/src/strings/format/date.rs +++ b/crates/nu-command/src/strings/format/date.rs @@ -27,7 +27,7 @@ impl Command for FormatDate { SyntaxShape::String, "The desired format date.", ) - .category(Category::Date) + .category(Category::Strings) } fn usage(&self) -> &str {