diff options
author | David Aguilar <davvid@gmail.com> | 2013-02-23 16:50:24 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-24 13:31:10 -0800 |
commit | 1a2ba8b90fa74a01684b45a7beb88329c4b7793c (patch) | |
tree | 4a2fd67abe6503f867bd863e8ae41633e2f8e60e /Documentation/user-manual.txt | |
parent | 9a8a84c319e51eb25bfc0ee44d064617c310aa9e (diff) | |
download | git-1a2ba8b90fa74a01684b45a7beb88329c4b7793c.tar.gz |
Documentation/user-manual.txt: use a lowercase "usage:" string
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>
Diffstat (limited to 'Documentation/user-manual.txt')
-rw-r--r-- | Documentation/user-manual.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index 23689b0b93..d290632d18 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -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 } |