mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-18 18:00:35 +01:00
Fix description of smart-case in help text
This commit is contained in:
parent
be2238ddf4
commit
c38ef0e9b2
1 changed files with 2 additions and 2 deletions
|
@ -113,11 +113,11 @@ fn usage() -> HashMap<&'static str, Help> {
|
||||||
doc!(h, "case-sensitive"
|
doc!(h, "case-sensitive"
|
||||||
, "Case-sensitive search (default: smart case)"
|
, "Case-sensitive search (default: smart case)"
|
||||||
, "Perform a case-sensitive search. By default, fd uses case-insensitive searches, \
|
, "Perform a case-sensitive search. By default, fd uses case-insensitive searches, \
|
||||||
unless the pattern contains both upper- and lowercase characters (smart case).");
|
unless the pattern contains an uppercase character (smart case).");
|
||||||
doc!(h, "ignore-case"
|
doc!(h, "ignore-case"
|
||||||
, "Case-insensitive search (default: smart case)"
|
, "Case-insensitive search (default: smart case)"
|
||||||
, "Perform a case-insensitive search. By default, fd uses case-insensitive searches, \
|
, "Perform a case-insensitive search. By default, fd uses case-insensitive searches, \
|
||||||
unless the pattern contains both upper- and lowercase characters (smart case).");
|
unless the pattern contains an uppercase character (smart case).");
|
||||||
doc!(h, "absolute-path"
|
doc!(h, "absolute-path"
|
||||||
, "Show absolute instead of relative paths"
|
, "Show absolute instead of relative paths"
|
||||||
, "Shows the full path starting from the root as opposed to relative paths.");
|
, "Shows the full path starting from the root as opposed to relative paths.");
|
||||||
|
|
Loading…
Reference in a new issue