Skip to content

Commit 6412757

Browse files
scopgitster
authored andcommitted
Spelling fixes
Signed-off-by: Ville Skyttä <ville.skytta@iki.fi> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent e0aaa1b commit 6412757

28 files changed

+41
-41
lines changed

Documentation/RelNotes/1.7.10.1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Fixes since v1.7.10
6969
* The 'push to upstream' implementation was broken in some corner
7070
cases. "git push $there" without refspec, when the current branch
7171
is set to push to a remote different from $there, used to push to
72-
$there using the upstream information to a remote unreleated to
72+
$there using the upstream information to a remote unrelated to
7373
$there.
7474

7575
* Giving "--continue" to a conflicted "rebase -i" session skipped a

Documentation/RelNotes/2.12.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ notes for details).
264264
needed it so far.
265265

266266
* Git 2.11 had a minor regression in "merge --ff-only" that competed
267-
with another process that simultanously attempted to update the
267+
with another process that simultaneously attempted to update the
268268
index. We used to explain what went wrong with an error message,
269269
but the new code silently failed. The error message has been
270270
resurrected.

Documentation/RelNotes/2.14.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ UI, Workflows & Features
5454
even when the other side hasn't enabled allowTipSHA1InWant.
5555

5656
* The recently introduced "[includeIf "gitdir:$dir"] path=..."
57-
mechansim has further been taught to take symlinks into account.
57+
mechanism has further been taught to take symlinks into account.
5858
The directory "$dir" specified in "gitdir:$dir" may be a symlink to
5959
a real location, not something that $(getcwd) may return. In such
6060
a case, a realpath of "$dir" is compared with the real path of the

Documentation/git-reset.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ $ git reset --keep start <3>
294294

295295
Split a commit apart into a sequence of commits::
296296
+
297-
Suppose that you have created lots of logically separate changes and commited
297+
Suppose that you have created lots of logically separate changes and committed
298298
them together. Then, later you decide that it might be better to have each
299299
logical chunk associated with its own commit. You can use git reset to rewind
300300
history without changing the contents of your local files, and then successively

Documentation/git-submodule.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ you can also just use `git submodule update --init` without
141141
the explicit 'init' step if you do not intend to customize
142142
any submodule locations.
143143
+
144-
See the add subcommand for the defintion of default remote.
144+
See the add subcommand for the definition of default remote.
145145

146146
deinit [-f|--force] (--all|[--] <path>...)::
147147
Unregister the given submodules, i.e. remove the whole

abspath.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ char *strbuf_realpath(struct strbuf *resolved, const char *path,
183183

184184
/*
185185
* use the symlink as the remaining components that
186-
* need to be resloved
186+
* need to be resolved
187187
*/
188188
strbuf_swap(&symlink, &remaining);
189189
}

builtin/grep.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ static int grep_submodule(struct grep_opt *opt, const struct object_id *oid,
647647
return 0;
648648
if (!is_submodule_populated_gently(path, NULL)) {
649649
/*
650-
* If searching history, check for the presense of the
650+
* If searching history, check for the presence of the
651651
* submodule's gitdir before skipping the submodule.
652652
*/
653653
if (oid) {

compat/regex/regexec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4102,7 +4102,7 @@ extend_buffers (re_match_context_t *mctx)
41024102
if (BE (INT_MAX / 2 / sizeof (re_dfastate_t *) <= pstr->bufs_len, 0))
41034103
return REG_ESPACE;
41044104

4105-
/* Double the lengthes of the buffers. */
4105+
/* Double the lengths of the buffers. */
41064106
ret = re_string_realloc_buffers (pstr, pstr->bufs_len * 2);
41074107
if (BE (ret != REG_NOERROR, 0))
41084108
return ret;

contrib/hooks/multimail/git_multimail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2964,7 +2964,7 @@ def get_revision_recipients(self, revision):
29642964

29652965

29662966
class CLIRecipientsEnvironmentMixin(Environment):
2967-
"""Mixin storing recipients information comming from the
2967+
"""Mixin storing recipients information coming from the
29682968
command-line."""
29692969

29702970
def __init__(self, cli_recipients=None, **kw):

contrib/mw-to-git/git-remote-mediawiki.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ sub mw_import_revids {
857857

858858
my $n = 0;
859859
my $n_actual = 0;
860-
my $last_timestamp = 0; # Placeholer in case $rev->timestamp is undefined
860+
my $last_timestamp = 0; # Placeholder in case $rev->timestamp is undefined
861861

862862
foreach my $pagerevid (@{$revision_ids}) {
863863
# Count page even if we skip it, since we display

0 commit comments

Comments
 (0)