Skip to content

Commit 52aeeeb

Browse files
committed
Improve help text
1 parent 1e27288 commit 52aeeeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/main.rs‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ fn main() {
189189
.conflicts_with("filter")
190190
.conflicts_with("types")
191191
.conflicts_with("depth")
192-
.help("Exclude files matching this regex. To ignore png files type: -v \"\\.png$\" "),
192+
.help("Exclude filepaths matching this regex. To ignore png files type: -v \"\\.png$\" "),
193193
)
194194
.arg(
195195
Arg::new("filter")
@@ -200,7 +200,7 @@ fn main() {
200200
.multiple_occurrences(true)
201201
.conflicts_with("types")
202202
.conflicts_with("depth")
203-
.help("Only include files matching this regex. For png files type: -e \"\\.png$\" "),
203+
.help("Only include filepaths matching this regex. For png files type: -e \"\\.png$\" "),
204204
)
205205
.arg(
206206
Arg::new("types")

0 commit comments

Comments
 (0)