Skip to content

Commit 3dff537

Browse files
Pavel RoskinJunio C Hamano
authored andcommitted
Assorted typo fixes
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 0f39087 commit 3dff537

27 files changed

+41
-41
lines changed

Documentation/config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ in the section header, like in example below:
3939

4040
Subsection names can contain any characters except newline (doublequote
4141
'`"`' and backslash have to be escaped as '`\"`' and '`\\`',
42-
respecitvely) and are case sensitive. Section header cannot span multiple
42+
respectively) and are case sensitive. Section header cannot span multiple
4343
lines. Variables may belong directly to a section or to a given subsection.
4444
You can have `[section]` if you have `[section "subsection"]`, but you
4545
don't need to.

Documentation/diff-format.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ or like this (when '--cc' option is used):
159159
deleted file mode <mode>,<mode>
160160
+
161161
The `mode <mode>,<mode>..<mode>` line appears only if at least one of
162-
the <mode> is diferent from the rest. Extended headers with
162+
the <mode> is different from the rest. Extended headers with
163163
information about detected contents movement (renames and
164164
copying detection) are designed to work with diff of two
165165
<tree-ish> and are not used by combined diff format.

Documentation/git-send-pack.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ git-send-pack(1)
33

44
NAME
55
----
6-
git-send-pack - Push objects over git protocol to another reposiotory
6+
git-send-pack - Push objects over git protocol to another repository
77

88

99
SYNOPSIS

Documentation/git-svn.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ manually joining branches on commit.
133133

134134
'multi-init'::
135135
This command supports git-svnimport-like command-line syntax for
136-
importing repositories that are layed out as recommended by the
136+
importing repositories that are laid out as recommended by the
137137
SVN folks. This is a bit more tolerant than the git-svnimport
138138
command-line syntax and doesn't require the user to figure out
139139
where the repository URL ends and where the repository path

Documentation/gitk.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ frequently used options.
5454

5555
Limit commits to the ones touching files in the given paths. Note, to
5656
avoid ambiguity wrt. revision names use "--" to separate the paths
57-
from any preceeding options.
57+
from any preceding options.
5858

5959
Examples
6060
--------

Documentation/user-manual.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,8 @@ if commit X is an ancestor of commit Y. Equivalently, you could say
425425
that Y is a descendent of X, or that there is a chain of parents
426426
leading from commit Y to commit X.
427427

428-
Undestanding history: History diagrams
429-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
428+
Understanding history: History diagrams
429+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
430430

431431
We will sometimes represent git history using diagrams like the one
432432
below. Commits are shown as "o", and the links between them with
@@ -806,7 +806,7 @@ display options.
806806

807807
Note that git log starts with the most recent commit and works
808808
backwards through the parents; however, since git history can contain
809-
multiple independant lines of development, the particular order that
809+
multiple independent lines of development, the particular order that
810810
commits are listed in may be somewhat arbitrary.
811811

812812
Generating diffs
@@ -1075,7 +1075,7 @@ $ git commit
10751075
-------------------------------------------------
10761076

10771077
and git will prompt you for a commit message and then create the new
1078-
commmit. Check to make sure it looks like what you expected with
1078+
commit. Check to make sure it looks like what you expected with
10791079

10801080
-------------------------------------------------
10811081
$ git show
@@ -2953,7 +2953,7 @@ Include cross-references to the glossary, where appropriate.
29532953
Document shallow clones? See draft 1.5.0 release notes for some
29542954
documentation.
29552955

2956-
Add a sectin on working with other version control systems, including
2956+
Add a section on working with other version control systems, including
29572957
CVS, Subversion, and just imports of series of release tarballs.
29582958

29592959
More details on gitweb?

builtin-blame.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ static void free_patch(struct patch *p)
550550
}
551551

552552
/*
553-
* Link in a new blame entry to the scorebord. Entries that cover the
553+
* Link in a new blame entry to the scoreboard. Entries that cover the
554554
* same line range have been removed from the scoreboard previously.
555555
*/
556556
static void add_blame_entry(struct scoreboard *sb, struct blame_entry *e)
@@ -1392,7 +1392,7 @@ static void found_guilty_entry(struct blame_entry *ent)
13921392

13931393
/*
13941394
* The main loop -- while the scoreboard has lines whose true origin
1395-
* is still unknown, pick one brame_entry, and allow its current
1395+
* is still unknown, pick one blame_entry, and allow its current
13961396
* suspect to pass blames to its parents.
13971397
*/
13981398
static void assign_blame(struct scoreboard *sb, struct rev_info *revs, int opt)
@@ -2001,7 +2001,7 @@ int cmd_blame(int argc, const char **argv, const char *prefix)
20012001
/*
20022002
* We have collected options unknown to us in argv[1..unk]
20032003
* which are to be passed to revision machinery if we are
2004-
* going to do the "bottom" procesing.
2004+
* going to do the "bottom" processing.
20052005
*
20062006
* The remaining are:
20072007
*

builtin-branch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ static void rename_branch(const char *oldname, const char *newname, int force)
364364
unsigned char sha1[20];
365365

366366
if (!oldname)
367-
die("cannot rename the curren branch while not on any.");
367+
die("cannot rename the current branch while not on any.");
368368

369369
if (snprintf(oldref, sizeof(oldref), "refs/heads/%s", oldname) > sizeof(oldref))
370370
die("Old branchname too long");

builtin-for-each-ref.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ static const char *find_next(const char *cp)
135135
while (*cp) {
136136
if (*cp == '%') {
137137
/* %( is the start of an atom;
138-
* %% is a quoteed per-cent.
138+
* %% is a quoted per-cent.
139139
*/
140140
if (cp[1] == '(')
141141
return cp;

builtin-fsck.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ static void check_unreachable_object(struct object *obj)
117117

118118
/*
119119
* "!used" means that nothing at all points to it, including
120-
* other unreacahble objects. In other words, it's the "tip"
120+
* other unreachable objects. In other words, it's the "tip"
121121
* of some set of unreachable objects, usually a commit that
122122
* got dropped.
123123
*

0 commit comments

Comments
 (0)