summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-01-11 12:11:03 -0600
committerToby Vincent <tobyv13@gmail.com>2023-01-11 12:11:03 -0600
commitbd59027acc1d17eff34b031e62b19c067fba64bf (patch)
treeb57a997baf6906ebd749d92437aa447d2a126674 /src
parentea1ace826186fa008ff1fa64f1125f435ea0cedb (diff)
docs: fix incorrect max_depth help text
Diffstat (limited to 'src')
-rw-r--r--src/cli.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli.rs b/src/cli.rs
index a45f70d..6f7ee5d 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -26,7 +26,7 @@ pub struct Projects {
/// Max depth to recurse.
///
- /// By default, no limit is set. Setting to 0 will only use the supplied directory.
+ /// Setting to 0 will only use the supplied directory.
#[arg(short = 'd', long, default_value = "1")]
max_depth: Option<usize>,