summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3ea3c21)
raw | patch | inline | side by side (parent: 3ea3c21)
author | Michael J Gruber <git@drmicha.warpmail.net> | |
Wed, 22 Apr 2009 21:15:56 +0000 (23:15 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Thu, 23 Apr 2009 02:03:39 +0000 (19:03 -0700) |
A few more fixes on top of the automatic spell checker generated ones.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-reflog.c | patch | blob | history | |
compat/cygwin.c | patch | blob | history | |
compat/fnmatch/fnmatch.c | patch | blob | history | |
fast-import.c | patch | blob | history |
diff --git a/builtin-reflog.c b/builtin-reflog.c
index ff8b4f615b67358d31ccca78d7639ad0fe1ec78e..ddfdf5a3cbc79003dfbad14af8d1f047e3594aa6 100644 (file)
--- a/builtin-reflog.c
+++ b/builtin-reflog.c
@@ -240,7 +240,7 @@ static int unreachable(struct expire_reflog_cb *cb, struct commit *commit, unsig
static void mark_reachable(struct commit *commit, unsigned long expire_limit)
{
/*
- * We need to compute if commit on either side of an reflog
+ * We need to compute whether the commit on either side of a reflog
* entry is reachable from the tip of the ref for all entries.
* Mark commits that are reachable from the tip down to the
* time threshold first; we know a commit marked thusly is
diff --git a/compat/cygwin.c b/compat/cygwin.c
index 119287412d26dec68ed1c099aa449a6ea16b7bfd..b4a51b958c5651d3b509013aaef0c4e30b68a816 100644 (file)
--- a/compat/cygwin.c
+++ b/compat/cygwin.c
/*
* At start up, we are trying to determine whether Win32 API or cygwin stat
* functions should be used. The choice is determined by core.ignorecygwinfstricks.
- * Reading this option is not always possible immediately as git_dir may be
+ * Reading this option is not always possible immediately as git_dir may
* not be set yet. So until it is set, use cygwin lstat/stat functions.
* However, if core.filemode is set, we must use the Cygwin posix
* stat/lstat as the Windows stat functions do not determine posix filemode.
index 03157a4ab5e4aee407d133e9de58c953265c46a3..14feac7fe179069908df6dbc084b2adcc78c9242 100644 (file)
--- a/compat/fnmatch/fnmatch.c
+++ b/compat/fnmatch/fnmatch.c
# include <stdlib.h>
#endif
-/* For platform which support the ISO C amendment 1 functionality we
+/* For platforms which support the ISO C amendment 1 functionality we
support user defined character classes. */
#if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
/* Solaris 2.5 has a bug: <wchar.h> must be included before <wctype.h>. */
diff --git a/fast-import.c b/fast-import.c
index 53617a10d2de2480a5151772e68a10156e139b34..8d959af3b2346a03f737c47d6dd000dfd917f69d 100644 (file)
--- a/fast-import.c
+++ b/fast-import.c
# always escapes the related input from comment processing.
#
# In case it is not clear, the '#' that starts the comment
- # must be the first character on that the line (an lf have
+ # must be the first character on that line (an lf
# preceded it).
#
comment ::= '#' not_lf* lf;