diff --git a/crates/nu-command/src/formats/to/nuon.rs b/crates/nu-command/src/formats/to/nuon.rs index 5c6ce09c8c..0ee4b6a754 100644 --- a/crates/nu-command/src/formats/to/nuon.rs +++ b/crates/nu-command/src/formats/to/nuon.rs @@ -108,11 +108,6 @@ impl Command for ToNuon { example: "[1 2 3] | to nuon --indent 2", result: Some(Value::test_string("[\n 1,\n 2,\n 3\n]")), }, - Example { - description: "Overwrite any set option with --raw", - example: "[1 2 3] | to nuon --indent 2 --raw", - result: Some(Value::test_string("[1, 2, 3]")) - }, Example { description: "A more complex record with multiple data types", example: "{date: 2000-01-01, data: [1 [2 3] 4.56]} | to nuon --indent 2",