1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-27 02:56:12 +02:00

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>
This commit is contained in:
David Aguilar 2013-02-23 16:50:24 -08:00 committed by Junio C Hamano
parent 9a8a84c319
commit 1a2ba8b90f

View 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
}