summaryrefslogtreecommitdiff
path: root/cli/flags.rs
diff options
context:
space:
mode:
authorGeert-Jan Zwiers <geertjanzwiers@protonmail.com>2022-06-27 00:28:45 +0200
committerGitHub <noreply@github.com>2022-06-27 00:28:45 +0200
commit2d1c48ce171b32eb24a8438d9056ff46c44c1be8 (patch)
tree4d74fd31a11d817aa1f4cef5e25ee3ef927a3279 /cli/flags.rs
parent8d82ba729937baf83011354242cabc3d50c13dc2 (diff)
fix(docs): --watch arg is stable (#14970)
Diffstat (limited to 'cli/flags.rs')
-rw-r--r--cli/flags.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/flags.rs b/cli/flags.rs
index d7123409e..383d78a99 100644
--- a/cli/flags.rs
+++ b/cli/flags.rs
@@ -1986,7 +1986,7 @@ fn compat_arg<'a>() -> Arg<'a> {
fn watch_arg<'a>(takes_files: bool) -> Arg<'a> {
let arg = Arg::new("watch")
.long("watch")
- .help("UNSTABLE: Watch for file changes and restart automatically");
+ .help("Watch for file changes and restart automatically");
if takes_files {
arg
@@ -1996,14 +1996,14 @@ fn watch_arg<'a>(takes_files: bool) -> Arg<'a> {
.use_value_delimiter(true)
.require_equals(true)
.long_help(
- "UNSTABLE: Watch for file changes and restart process automatically.
+ "Watch for file changes and restart process automatically.
Local files from entry point module graph are watched by default.
Additional paths might be watched by passing them as arguments to this flag.",
)
.value_hint(ValueHint::AnyPath)
} else {
arg.long_help(
- "UNSTABLE: Watch for file changes and restart process automatically. \
+ "Watch for file changes and restart process automatically. \
Only local files from entry point module graph are watched.",
)
}