diff options
author | Pavel Roskin <proski@gnu.org> | 2006-07-10 01:50:18 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-10 00:36:44 -0700 |
commit | 82e5a82fd73edb80a841f5fab1660e14b9b8f3ad (patch) | |
tree | 9661cdf47ee3bf69192ff336e0514fc6dd607728 /builtin-apply.c | |
parent | 930cf7dd7cc6b87d173f182230763e1f1913d319 (diff) | |
download | git-82e5a82fd73edb80a841f5fab1660e14b9b8f3ad.tar.gz git-82e5a82fd73edb80a841f5fab1660e14b9b8f3ad.tar.xz |
Fix more typos, primarily in the code
The only visible change is that git-blame doesn't understand
"--compability" anymore, but it does accept "--compatibility" instead,
which is already documented.
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-apply.c')
-rw-r--r-- | builtin-apply.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-apply.c b/builtin-apply.c index c3af48917..1e5b846dd 100644 --- a/builtin-apply.c +++ b/builtin-apply.c @@ -765,7 +765,7 @@ static int find_header(char *line, unsigned long size, int *hdrsize, struct patc continue; /* - * Make sure we don't find any unconnected patch fragmants. + * Make sure we don't find any unconnected patch fragments. * That's a sign that we didn't find a header, and that a * patch has become corrupted/broken up. */ @@ -990,7 +990,7 @@ static int parse_binary(char *buffer, unsigned long size, struct patch *patch) * so one line can fit up to 13 groups that would decode * to 52 bytes max. The length byte 'A'-'Z' corresponds * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes. - * The end of binary is signalled with an empty line. + * The end of binary is signaled with an empty line. */ int llen, used; struct fragment *fragment; |