From eef4a89ff409fe4d21b777d88dd52dfafa865ad5 Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Fri, 7 Jun 2024 01:32:08 +0200 Subject: [PATCH] Move `format date` to `Category::Strings` (#13083) 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 {