diff --git a/crates/nu-command/src/shells/exit.rs b/crates/nu-command/src/shells/exit.rs index f1c42294cc..8573fa11b9 100644 --- a/crates/nu-command/src/shells/exit.rs +++ b/crates/nu-command/src/shells/exit.rs @@ -47,12 +47,10 @@ impl Command for Exit { } fn examples(&self) -> Vec { - vec![ - Example { - description: "Exit the current shell", - example: "exit", - result: None, - }, - ] + vec![Example { + description: "Exit the current shell", + example: "exit", + result: None, + }] } }