Browse Source

Merge branch 'jc/typo' into maint

* jc/typo:
  Typofixes outside documentation area
maint
Junio C Hamano 15 years ago
parent
commit
07cb9a369e
  1. 2
      builtin-apply.c
  2. 5
      builtin-cat-file.c
  3. 2
      builtin-log.c
  4. 2
      builtin-prune.c
  5. 2
      builtin-show-branch.c
  6. 2
      compat/win32/pthread.c
  7. 2
      connect.c
  8. 2
      contrib/fast-import/import-directories.perl
  9. 2
      daemon.c
  10. 2
      diff.c
  11. 2
      levenshtein.h
  12. 2
      path.c
  13. 4
      perl/Git.pm
  14. 2
      refs.c
  15. 2
      setup.c
  16. 2
      test-chmtime.c
  17. 2
      transport-helper.c

2
builtin-apply.c

@ -2006,7 +2006,7 @@ static int find_pos(struct image *img, @@ -2006,7 +2006,7 @@ static int find_pos(struct image *img,
return -1;

/*
* If match_begining or match_end is specified, there is no
* If match_beginning or match_end is specified, there is no
* point starting from a wrong line that will never match and
* wander around and wait for a match at the specified end.
*/

5
builtin-cat-file.c

@ -219,9 +219,10 @@ int cmd_cat_file(int argc, const char **argv, const char *prefix) @@ -219,9 +219,10 @@ int cmd_cat_file(int argc, const char **argv, const char *prefix)
"exit with zero when there's no error", 'e'),
OPT_SET_INT('p', NULL, &opt, "pretty-print object's content", 'p'),
OPT_SET_INT(0, "batch", &batch,
"show info and content of objects feeded on stdin", BATCH),
"show info and content of objects fed from the standard input",
BATCH),
OPT_SET_INT(0, "batch-check", &batch,
"show info about objects feeded on stdin",
"show info about objects fed from the standard input",
BATCH_CHECK),
OPT_END()
};

2
builtin-log.c

@ -1089,7 +1089,7 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix) @@ -1089,7 +1089,7 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)

/*
* We cannot move this anywhere earlier because we do want to
* know if --root was given explicitly from the comand line.
* know if --root was given explicitly from the command line.
*/
rev.show_root_diff = 1;


2
builtin-prune.c

@ -106,7 +106,7 @@ static void prune_object_dir(const char *path) @@ -106,7 +106,7 @@ static void prune_object_dir(const char *path)
/*
* Write errors (particularly out of space) can result in
* failed temporary packs (and more rarely indexes and other
* files begining with "tmp_") accumulating in the object
* files beginning with "tmp_") accumulating in the object
* and the pack directories.
*/
static void remove_temporary_files(const char *path)

2
builtin-show-branch.c

@ -567,7 +567,7 @@ static int git_show_branch_config(const char *var, const char *value, void *cb) @@ -567,7 +567,7 @@ static int git_show_branch_config(const char *var, const char *value, void *cb)
return config_error_nonbool(var);
/*
* default_arg is now passed to parse_options(), so we need to
* mimick the real argv a bit better.
* mimic the real argv a bit better.
*/
if (!default_num) {
default_alloc = 20;

2
compat/win32/pthread.c

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
/*
* Copyright (C) 2009 Andrzej K. Haczewski <ahaczewski@gmail.com>
*
* DISCLAMER: The implementation is Git-specific, it is subset of original
* DISCLAIMER: The implementation is Git-specific, it is subset of original
* Pthreads API, without lots of other features that Git doesn't use.
* Git also makes sure that the passed arguments are valid, so there's
* no need for double-checking.

2
connect.c

@ -504,7 +504,7 @@ struct child_process *git_connect(int fd[2], const char *url_orig, @@ -504,7 +504,7 @@ struct child_process *git_connect(int fd[2], const char *url_orig,

/*
* Don't do destructive transforms with git:// as that
* protocol code does '[]' dewrapping of its own.
* protocol code does '[]' unwrapping of its own.
*/
if (host[0] == '[') {
end = strchr(host + 1, ']');

2
contrib/fast-import/import-directories.perl

@ -344,7 +344,7 @@ sub parsekeyvaluepair @@ -344,7 +344,7 @@ sub parsekeyvaluepair

Key and value strings may be enclosed in quotes, in which case
whitespace inside the quotes is preserved. Additionally, an equal
sign may be included in the key by preceeding it with a backslash.
sign may be included in the key by preceding it with a backslash.
For example:

"key1 "=value1

2
daemon.c

@ -407,7 +407,7 @@ static void parse_host_and_port(char *hostport, char **host, @@ -407,7 +407,7 @@ static void parse_host_and_port(char *hostport, char **host,

end = strchr(hostport, ']');
if (!end)
die("Invalid reqeuest ('[' without ']')");
die("Invalid request ('[' without ']')");
*end = '\0';
*host = hostport + 1;
if (!end[1])

2
diff.c

@ -3644,7 +3644,7 @@ static void diffcore_skip_stat_unmatch(struct diff_options *diffopt) @@ -3644,7 +3644,7 @@ static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
struct diff_filepair *p = q->queue[i];

/*
* 1. Entries that come from stat info dirtyness
* 1. Entries that come from stat info dirtiness
* always have both sides (iow, not create/delete),
* one side of the object name is unknown, with
* the same mode and size. Keep the ones that

2
levenshtein.h

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
#define LEVENSHTEIN_H

int levenshtein(const char *string1, const char *string2,
int swap_penalty, int substition_penalty,
int swap_penalty, int substitution_penalty,
int insertion_penalty, int deletion_penalty);

#endif

2
path.c

@ -610,7 +610,7 @@ int daemon_avoid_alias(const char *p) @@ -610,7 +610,7 @@ int daemon_avoid_alias(const char *p)
/*
* This resurrects the belts and suspenders paranoia check by HPA
* done in <435560F7.4080006@zytor.com> thread, now enter_repo()
* does not do getcwd() based path canonicalizations.
* does not do getcwd() based path canonicalization.
*
* sl becomes true immediately after seeing '/' and continues to
* be true as long as dots continue after that without intervening

4
perl/Git.pm

@ -204,14 +204,14 @@ sub repository { @@ -204,14 +204,14 @@ sub repository {
$dir = $opts{Directory};

unless (-d "$dir/refs" and -d "$dir/objects" and -e "$dir/HEAD") {
# Mimick git-rev-parse --git-dir error message:
# Mimic git-rev-parse --git-dir error message:
throw Error::Simple("fatal: Not a git repository: $dir");
}
my $search = Git->repository(Repository => $dir);
try {
$search->command('symbolic-ref', 'HEAD');
} catch Git::Error::Command with {
# Mimick git-rev-parse --git-dir error message:
# Mimic git-rev-parse --git-dir error message:
throw Error::Simple("fatal: Not a git repository: $dir");
}


2
refs.c

@ -706,7 +706,7 @@ int for_each_glob_ref_in(each_ref_fn fn, const char *pattern, @@ -706,7 +706,7 @@ int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,

has_glob_specials = strpbrk(pattern, "?*[");
if (!has_glob_specials) {
/* Append impiled '/' '*' if not present. */
/* Append implied '/' '*' if not present. */
if (real_pattern.buf[real_pattern.len - 1] != '/')
strbuf_addch(&real_pattern, '/');
/* No need to check for '*', there is none. */

2
setup.c

@ -206,7 +206,7 @@ int is_inside_work_tree(void) @@ -206,7 +206,7 @@ int is_inside_work_tree(void)
}

/*
* set_work_tree() is only ever called if you set GIT_DIR explicitely.
* set_work_tree() is only ever called if you set GIT_DIR explicitly.
* The old behaviour (which we retain here) is to set the work tree root
* to the cwd, unless overridden by the config, the command line, or
* GIT_WORK_TREE.

2
test-chmtime.c

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
/*
* This program can either change modification time of the given
* file(s) or just print it. The program does not change atime nor
* ctime (their values are explicitely preserved).
* ctime (their values are explicitly preserved).
*
* The mtime can be changed to an absolute value:
*

2
transport-helper.c

@ -171,7 +171,7 @@ static struct child_process *get_helper(struct transport *transport) @@ -171,7 +171,7 @@ static struct child_process *get_helper(struct transport *transport)
} else if (!strcmp(capname, "connect")) {
data->connect = 1;
} else if (mandatory) {
die("Unknown madatory capability %s. This remote "
die("Unknown mandatory capability %s. This remote "
"helper probably needs newer version of Git.\n",
capname);
}

Loading…
Cancel
Save