Use the word 'stuck' instead of 'sticked'

The past participle of 'stick' is 'stuck'.

Signed-off-by: Nicolas Vigier <boklm@mars-attacks.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Nicolas Vigier
2013-10-31 12:08:28 +01:00
committed by Junio C Hamano
parent 3d092bfc6f
commit b0d12fc9b2
4 changed files with 8 additions and 8 deletions

2
diff.c
View File

@ -3394,7 +3394,7 @@ int parse_long_opt(const char *opt, const char **argv,
if (prefixcmp(arg, opt))
return 0;
arg += strlen(opt);
if (*arg == '=') { /* sticked form: --option=value */
if (*arg == '=') { /* stuck form: --option=value */
*optarg = arg + 1;
return 1;
}