diff --git a/crates/nu-command/src/filesystem/touch.rs b/crates/nu-command/src/filesystem/touch.rs index 2a1e128b046d..a3e5bc40f1b0 100644 --- a/crates/nu-command/src/filesystem/touch.rs +++ b/crates/nu-command/src/filesystem/touch.rs @@ -179,11 +179,6 @@ impl Command for Touch { example: "touch -m fixture.json", result: None, }, - Example { - description: "Changes the last modified time of files a, b and c to a date", - example: r#"touch -m -d "yesterday" a b c"#, - result: None, - }, Example { description: r#"Changes the last modified time of file d and e to "fixture.json"'s last modified time"#, example: r#"touch -m -r fixture.json d e"#,