From bd3a61a2f71485edcfdae9f313eb5f1c8762e8b0 Mon Sep 17 00:00:00 2001 From: Michael Angerman <1809991+stormasm@users.noreply.github.com> Date: Sun, 6 Aug 2023 10:09:44 -0700 Subject: [PATCH] Categorification: graduate nuon --- from the experimental category to the formats category (#9932) @jntrnr and I discussed the fact that we can now *graduate* nuon to be a first class citizen... This PR moves * from nuon * to nuon out of the *experimental* stage and into *formats* --- crates/nu-command/src/formats/from/nuon.rs | 2 +- crates/nu-command/src/formats/to/nuon.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-command/src/formats/from/nuon.rs b/crates/nu-command/src/formats/from/nuon.rs index a06ef338a6..ac6d59ec8a 100644 --- a/crates/nu-command/src/formats/from/nuon.rs +++ b/crates/nu-command/src/formats/from/nuon.rs @@ -19,7 +19,7 @@ impl Command for FromNuon { fn signature(&self) -> nu_protocol::Signature { Signature::build("from nuon") .input_output_types(vec![(Type::String, Type::Any)]) - .category(Category::Experimental) + .category(Category::Formats) } fn examples(&self) -> Vec { diff --git a/crates/nu-command/src/formats/to/nuon.rs b/crates/nu-command/src/formats/to/nuon.rs index 4eaf4dfe38..c087264697 100644 --- a/crates/nu-command/src/formats/to/nuon.rs +++ b/crates/nu-command/src/formats/to/nuon.rs @@ -39,7 +39,7 @@ impl Command for ToNuon { "specify indentation tab quantity", Some('t'), ) - .category(Category::Experimental) + .category(Category::Formats) } fn usage(&self) -> &str {