]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Documentation/user-manual.txt: use a lowercase "usage:" string
authorDavid Aguilar <davvid@gmail.com>
Sun, 24 Feb 2013 00:50:24 +0000 (16:50 -0800)
committerJunio C Hamano <gitster@pobox.com>
Sun, 24 Feb 2013 21:31:10 +0000 (13:31 -0800)
Make the usage string in the example script consistent with Git.

Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/user-manual.txt

index 23689b0b939cf0ee903e610194bcea090cf3c495..d290632d183097cbe51e0751037d71aa8310c452 100644 (file)
@@ -2341,7 +2341,7 @@ origin)
        fi
        ;;
 *)
-       echo "Usage: $0 origin|test|release" 1>&2
+       echo "usage: $0 origin|test|release" 1>&2
        exit 1
        ;;
 esac
@@ -2355,7 +2355,7 @@ pname=$0
 
 usage()
 {
-       echo "Usage: $pname branch test|release" 1>&2
+       echo "usage: $pname branch test|release" 1>&2
        exit 1
 }