Fix description of smart-case in help text

This commit is contained in:
sharkdp 2017-10-14 12:09:34 +02:00
parent be2238ddf4
commit c38ef0e9b2
1 changed files with 2 additions and 2 deletions

View File

@ -113,11 +113,11 @@ fn usage() -> HashMap<&'static str, Help> {
doc!(h, "case-sensitive"
, "Case-sensitive search (default: smart case)"
, "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"
, "Case-insensitive search (default: smart case)"
, "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"
, "Show absolute instead of relative paths"
, "Shows the full path starting from the root as opposed to relative paths.");