From 6f2b9b2216a1138c9ba20440e802b786d73aa3be Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Thu, 23 Jan 2025 12:41:28 -0500 Subject: [PATCH] Fix a missing space in CLI help text (#1218) --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 6849d1e..a89faca 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -108,7 +108,7 @@ impl Cli { Arg::new("input") .num_args(1..) .conflicts_with("languages") - .help("The path(s) to the file or directory to be counted.(default current directory)"), + .help("The path(s) to the file or directory to be counted. (default current directory)"), ) .arg( Arg::new("languages")