From 1b8051ece5dcef0da52b2a4db98889ed4c7c5fdb Mon Sep 17 00:00:00 2001 From: Justin Ma Date: Thu, 2 Jun 2022 17:38:42 +0800 Subject: [PATCH] Fix doc building for vuepress-next, avoid using angle brackets (#5696) * Fix doc building for vuepress-next, avoid using angle brackets * [ci skip] --- crates/nu-command/src/filesystem/watch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/filesystem/watch.rs b/crates/nu-command/src/filesystem/watch.rs index f8012597b8..a3d368cc47 100644 --- a/crates/nu-command/src/filesystem/watch.rs +++ b/crates/nu-command/src/filesystem/watch.rs @@ -51,7 +51,7 @@ impl Command for Watch { .named( "recursive", SyntaxShape::Boolean, - "Watch all directories under recursively. Will be ignored if is a file (default: true)", + "Watch all directories under `` recursively. Will be ignored if `` is a file (default: true)", Some('r'), ) .switch("verbose", "Operate in verbose mode (default: false)", Some('v'))