summaryrefslogtreecommitdiff
path: root/fast-import.c
diff options
context:
space:
mode:
authorMike Ralphson <mike@abacus.co.uk>2009-04-17 18:13:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-04-23 02:02:12 (GMT)
commit3ea3c215c02dc4a4e7d0881c25b2223540960797 (patch)
treee6e8e312ae4af706982a1fa1dd9ddfb3faedc2f0 /fast-import.c
parentbad542f0b1bca3b57e300a21fc7268c1800e6752 (diff)
downloadgit-3ea3c215c02dc4a4e7d0881c25b2223540960797.zip
git-3ea3c215c02dc4a4e7d0881c25b2223540960797.tar.gz
git-3ea3c215c02dc4a4e7d0881c25b2223540960797.tar.bz2
Fix typos / spelling in comments
Signed-off-by: Mike Ralphson <mike@abacus.co.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fast-import.c')
-rw-r--r--fast-import.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fast-import.c b/fast-import.c
index 23c496d..53617a1 100644
--- a/fast-import.c
+++ b/fast-import.c
@@ -76,7 +76,7 @@ Format of STDIN stream:
delim lf;
# note: declen indicates the length of binary_data in bytes.
- # declen does not include the lf preceeding the binary data.
+ # declen does not include the lf preceding the binary data.
#
exact_data ::= 'data' sp declen lf
binary_data;
@@ -134,7 +134,7 @@ Format of STDIN stream:
#
# In case it is not clear, the '#' that starts the comment
# must be the first character on that the line (an lf have
- # preceeded it).
+ # preceded it).
#
comment ::= '#' not_lf* lf;
not_lf ::= # Any byte that is not ASCII newline (LF);
@@ -953,7 +953,7 @@ static void end_packfile(void)
close(pack_data->pack_fd);
idx_name = keep_pack(create_index());
- /* Register the packfile with core git's machinary. */
+ /* Register the packfile with core git's machinery. */
new_p = add_packed_git(idx_name, strlen(idx_name), 1);
if (!new_p)
die("core git rejected index %s", idx_name);