aboutsummaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-05-15 12:16:03 -0700
committerJunio C Hamano <gitster@pobox.com>2011-05-15 15:24:36 -0700
commitccf5ace0dcfab16dca3870076e81d6ad1e294955 (patch)
treec8336cdc24c031af0df2f276743ec0b540cee1a6 /sha1_file.c
parent8c2be75fe117f5079087a6dfb07c573cc6716143 (diff)
downloadgit-ccf5ace0dcfab16dca3870076e81d6ad1e294955.tar.gz
git-ccf5ace0dcfab16dca3870076e81d6ad1e294955.tar.xz
sha1_file: typofix
The number zero is spelled "zero", not "zer0". Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 889fe7183..ee06d99f2 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -1308,7 +1308,7 @@ static void *unpack_sha1_rest(z_stream *stream, void *buffer, unsigned long size
/*
* The above condition must be (bytes <= size), not
* (bytes < size). In other words, even though we
- * expect no more output and set avail_out to zer0,
+ * expect no more output and set avail_out to zero,
* the input zlib stream may have bytes that express
* "this concludes the stream", and we *do* want to
* eat that input.