diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2009-04-22 23:15:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-22 19:03:39 -0700 |
commit | b18cc5a3b2f64364d2c7d3560066852728a6c666 (patch) | |
tree | afa6de958d57a68df14e45c1b908694e7c3f67b6 | |
parent | 3ea3c215c02dc4a4e7d0881c25b2223540960797 (diff) | |
download | git-b18cc5a3b2f64364d2c7d3560066852728a6c666.tar.gz |
Fix more typos/spelling in comments
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>
-rw-r--r-- | builtin-reflog.c | 2 | ||||
-rw-r--r-- | compat/cygwin.c | 2 | ||||
-rw-r--r-- | compat/fnmatch/fnmatch.c | 2 | ||||
-rw-r--r-- | fast-import.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/builtin-reflog.c b/builtin-reflog.c index ff8b4f615b..ddfdf5a3cb 100644 --- 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 119287412d..b4a51b958c 100644 --- a/compat/cygwin.c +++ b/compat/cygwin.c @@ -89,7 +89,7 @@ static int cygwin_stat(const char *path, struct stat *buf) /* * 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. diff --git a/compat/fnmatch/fnmatch.c b/compat/fnmatch/fnmatch.c index 03157a4ab5..14feac7fe1 100644 --- a/compat/fnmatch/fnmatch.c +++ b/compat/fnmatch/fnmatch.c @@ -39,7 +39,7 @@ # 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 53617a10d2..8d959af3b2 100644 --- a/fast-import.c +++ b/fast-import.c @@ -133,7 +133,7 @@ Format of STDIN stream: # 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; |