From f2da804d3b6f0f0da95e57e40a56c8a6d706c105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Saparelli?= Date: Tue, 15 Sep 2020 13:21:02 +1200 Subject: [PATCH] Correct --watch help text as per #165 --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 4ca384f..51b666d 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -143,7 +143,7 @@ where .long("exts") .takes_value(true)) .arg(Arg::with_name("path") - .help("Watch a specific directory") + .help("Watch a specific file or directory") .short("w") .long("watch") .number_of_values(1)