From c38ef0e9b2bb6b2f4247c6e522ac648453d53d1e Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sat, 14 Oct 2017 12:09:34 +0200 Subject: [PATCH] Fix description of smart-case in help text --- src/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.rs b/src/app.rs index cec9868..75b3d42 100644 --- a/src/app.rs +++ b/src/app.rs @@ -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.");