From b543063749952ad6482fecfd1a9fae56e365f06b Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Thu, 29 Dec 2022 17:45:55 +0100 Subject: [PATCH] Fix the syntax highlighting in `help metadata` (#7628) --- crates/nu-command/src/core_commands/metadata.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/core_commands/metadata.rs b/crates/nu-command/src/core_commands/metadata.rs index 9651388a6..5e716af5a 100644 --- a/crates/nu-command/src/core_commands/metadata.rs +++ b/crates/nu-command/src/core_commands/metadata.rs @@ -106,7 +106,7 @@ impl Command for Metadata { vec![ Example { description: "Get the metadata of a variable", - example: "metadata $a", + example: "let a = 42; metadata $a", result: None, }, Example {