Assorted typo fixes

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Pavel Roskin 2007-02-03 23:49:16 -05:00 committed by Junio C Hamano
parent 0f39087589
commit 3dff5379bf
27 changed files with 41 additions and 41 deletions

View File

@ -39,7 +39,7 @@ in the section header, like in example below:
Subsection names can contain any characters except newline (doublequote Subsection names can contain any characters except newline (doublequote
'`"`' and backslash have to be escaped as '`\"`' and '`\\`', '`"`' and backslash have to be escaped as '`\"`' and '`\\`',
respecitvely) and are case sensitive. Section header cannot span multiple respectively) and are case sensitive. Section header cannot span multiple
lines. Variables may belong directly to a section or to a given subsection. lines. Variables may belong directly to a section or to a given subsection.
You can have `[section]` if you have `[section "subsection"]`, but you You can have `[section]` if you have `[section "subsection"]`, but you
don't need to. don't need to.

View File

@ -159,7 +159,7 @@ or like this (when '--cc' option is used):
deleted file mode <mode>,<mode> deleted file mode <mode>,<mode>
+ +
The `mode <mode>,<mode>..<mode>` line appears only if at least one of The `mode <mode>,<mode>..<mode>` line appears only if at least one of
the <mode> is diferent from the rest. Extended headers with the <mode> is different from the rest. Extended headers with
information about detected contents movement (renames and information about detected contents movement (renames and
copying detection) are designed to work with diff of two copying detection) are designed to work with diff of two
<tree-ish> and are not used by combined diff format. <tree-ish> and are not used by combined diff format.

View File

@ -3,7 +3,7 @@ git-send-pack(1)
NAME NAME
---- ----
git-send-pack - Push objects over git protocol to another reposiotory git-send-pack - Push objects over git protocol to another repository
SYNOPSIS SYNOPSIS

View File

@ -133,7 +133,7 @@ manually joining branches on commit.
'multi-init':: 'multi-init'::
This command supports git-svnimport-like command-line syntax for This command supports git-svnimport-like command-line syntax for
importing repositories that are layed out as recommended by the importing repositories that are laid out as recommended by the
SVN folks. This is a bit more tolerant than the git-svnimport SVN folks. This is a bit more tolerant than the git-svnimport
command-line syntax and doesn't require the user to figure out command-line syntax and doesn't require the user to figure out
where the repository URL ends and where the repository path where the repository URL ends and where the repository path

View File

@ -54,7 +54,7 @@ frequently used options.
Limit commits to the ones touching files in the given paths. Note, to Limit commits to the ones touching files in the given paths. Note, to
avoid ambiguity wrt. revision names use "--" to separate the paths avoid ambiguity wrt. revision names use "--" to separate the paths
from any preceeding options. from any preceding options.
Examples Examples
-------- --------

View File

@ -425,8 +425,8 @@ if commit X is an ancestor of commit Y. Equivalently, you could say
that Y is a descendent of X, or that there is a chain of parents that Y is a descendent of X, or that there is a chain of parents
leading from commit Y to commit X. leading from commit Y to commit X.
Undestanding history: History diagrams Understanding history: History diagrams
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
We will sometimes represent git history using diagrams like the one We will sometimes represent git history using diagrams like the one
below. Commits are shown as "o", and the links between them with below. Commits are shown as "o", and the links between them with
@ -806,7 +806,7 @@ display options.
Note that git log starts with the most recent commit and works Note that git log starts with the most recent commit and works
backwards through the parents; however, since git history can contain backwards through the parents; however, since git history can contain
multiple independant lines of development, the particular order that multiple independent lines of development, the particular order that
commits are listed in may be somewhat arbitrary. commits are listed in may be somewhat arbitrary.
Generating diffs Generating diffs
@ -1075,7 +1075,7 @@ $ git commit
------------------------------------------------- -------------------------------------------------
and git will prompt you for a commit message and then create the new and git will prompt you for a commit message and then create the new
commmit. Check to make sure it looks like what you expected with commit. Check to make sure it looks like what you expected with
------------------------------------------------- -------------------------------------------------
$ git show $ git show
@ -2953,7 +2953,7 @@ Include cross-references to the glossary, where appropriate.
Document shallow clones? See draft 1.5.0 release notes for some Document shallow clones? See draft 1.5.0 release notes for some
documentation. documentation.
Add a sectin on working with other version control systems, including Add a section on working with other version control systems, including
CVS, Subversion, and just imports of series of release tarballs. CVS, Subversion, and just imports of series of release tarballs.
More details on gitweb? More details on gitweb?

View File

@ -550,7 +550,7 @@ static void free_patch(struct patch *p)
} }
/* /*
* Link in a new blame entry to the scorebord. Entries that cover the * Link in a new blame entry to the scoreboard. Entries that cover the
* same line range have been removed from the scoreboard previously. * same line range have been removed from the scoreboard previously.
*/ */
static void add_blame_entry(struct scoreboard *sb, struct blame_entry *e) 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)
/* /*
* The main loop -- while the scoreboard has lines whose true origin * The main loop -- while the scoreboard has lines whose true origin
* is still unknown, pick one brame_entry, and allow its current * is still unknown, pick one blame_entry, and allow its current
* suspect to pass blames to its parents. * suspect to pass blames to its parents.
*/ */
static void assign_blame(struct scoreboard *sb, struct rev_info *revs, int opt) 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)
/* /*
* We have collected options unknown to us in argv[1..unk] * We have collected options unknown to us in argv[1..unk]
* which are to be passed to revision machinery if we are * which are to be passed to revision machinery if we are
* going to do the "bottom" procesing. * going to do the "bottom" processing.
* *
* The remaining are: * The remaining are:
* *

View File

@ -364,7 +364,7 @@ static void rename_branch(const char *oldname, const char *newname, int force)
unsigned char sha1[20]; unsigned char sha1[20];
if (!oldname) if (!oldname)
die("cannot rename the curren branch while not on any."); die("cannot rename the current branch while not on any.");
if (snprintf(oldref, sizeof(oldref), "refs/heads/%s", oldname) > sizeof(oldref)) if (snprintf(oldref, sizeof(oldref), "refs/heads/%s", oldname) > sizeof(oldref))
die("Old branchname too long"); die("Old branchname too long");

View File

@ -135,7 +135,7 @@ static const char *find_next(const char *cp)
while (*cp) { while (*cp) {
if (*cp == '%') { if (*cp == '%') {
/* %( is the start of an atom; /* %( is the start of an atom;
* %% is a quoteed per-cent. * %% is a quoted per-cent.
*/ */
if (cp[1] == '(') if (cp[1] == '(')
return cp; return cp;

View File

@ -117,7 +117,7 @@ static void check_unreachable_object(struct object *obj)
/* /*
* "!used" means that nothing at all points to it, including * "!used" means that nothing at all points to it, including
* other unreacahble objects. In other words, it's the "tip" * other unreachable objects. In other words, it's the "tip"
* of some set of unreachable objects, usually a commit that * of some set of unreachable objects, usually a commit that
* got dropped. * got dropped.
* *

View File

@ -408,7 +408,7 @@ static void make_service_overridable(const char *name, int ena) {
/* /*
* Separate the "extra args" information as supplied by the client connection. * Separate the "extra args" information as supplied by the client connection.
* Any resulting data is squirrelled away in the given interpolation table. * Any resulting data is squirreled away in the given interpolation table.
*/ */
static void parse_extra_args(struct interp *table, char *extra_args, int buflen) static void parse_extra_args(struct interp *table, char *extra_args, int buflen)
{ {

View File

@ -3,7 +3,7 @@
# Copyright (c) 2005 Linus Torvalds # Copyright (c) 2005 Linus Torvalds
# Copyright (c) 2005 Junio C Hamano # Copyright (c) 2005 Junio C Hamano
# #
# Resolve two trees, using enhancd multi-base read-tree. # Resolve two trees, using enhanced multi-base read-tree.
# The first parameters up to -- are merge bases; the rest are heads. # The first parameters up to -- are merge bases; the rest are heads.
bases= head= remotes= sep_seen= bases= head= remotes= sep_seen=

View File

@ -59,7 +59,7 @@ if ! [ -d "$QUILT_PATCHES" ] ; then
exit 1 exit 1
fi fi
# Temporay directories # Temporary directories
tmp_dir=.dotest tmp_dir=.dotest
tmp_msg="$tmp_dir/msg" tmp_msg="$tmp_dir/msg"
tmp_patch="$tmp_dir/patch" tmp_patch="$tmp_dir/patch"

View File

@ -834,7 +834,7 @@ sub file_type_long {
## ---------------------------------------------------------------------- ## ----------------------------------------------------------------------
## functions returning short HTML fragments, or transforming HTML fragments ## functions returning short HTML fragments, or transforming HTML fragments
## which don't beling to other sections ## which don't belong to other sections
# format line of commit message. # format line of commit message.
sub format_log_line_html { sub format_log_line_html {

View File

@ -386,7 +386,7 @@ struct rename
}; };
/* /*
* Get information of all renames which occured between 'o_tree' and * Get information of all renames which occurred between 'o_tree' and
* 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
* 'b_tree') to be able to associate the correct cache entries with * 'b_tree') to be able to associate the correct cache entries with
* the rename information. 'tree' is always equal to either a_tree or b_tree. * the rename information. 'tree' is always equal to either a_tree or b_tree.
@ -1175,7 +1175,7 @@ static struct commit_list *reverse_commit_list(struct commit_list *list)
/* /*
* Merge the commits h1 and h2, return the resulting virtual * Merge the commits h1 and h2, return the resulting virtual
* commit object and a flag indicating the cleaness of the merge. * commit object and a flag indicating the cleanness of the merge.
*/ */
static int merge(struct commit *h1, static int merge(struct commit *h1,
struct commit *h2, struct commit *h2,
@ -1222,8 +1222,8 @@ static int merge(struct commit *h1,
/* /*
* When the merge fails, the result contains files * When the merge fails, the result contains files
* with conflict markers. The cleanness flag is * with conflict markers. The cleanness flag is
* ignored, it was never acutally used, as result of * ignored, it was never actually used, as result of
* merge_trees has always overwritten it: the commited * merge_trees has always overwritten it: the committed
* "conflicts" were already resolved. * "conflicts" were already resolved.
*/ */
discard_cache(); discard_cache();

View File

@ -354,7 +354,7 @@ sub command_input_pipe {
=item command_close_pipe ( PIPE [, CTX ] ) =item command_close_pipe ( PIPE [, CTX ] )
Close the C<PIPE> as returned from C<command_*_pipe()>, checking Close the C<PIPE> as returned from C<command_*_pipe()>, checking
whether the command finished successfuly. The optional C<CTX> argument whether the command finished successfully. The optional C<CTX> argument
is required if you want to see the command name in the error message, is required if you want to see the command name in the error message,
and it is the second value returned by C<command_*_pipe()> when and it is the second value returned by C<command_*_pipe()> when
called in array context. The call idiom is: called in array context. The call idiom is:

View File

@ -781,7 +781,7 @@ =head1 $Error::ObjectifyCallback
This variable holds a reference to a subroutine that converts errors that This variable holds a reference to a subroutine that converts errors that
are plain strings to objects. It is used by Error.pm to convert textual are plain strings to objects. It is used by Error.pm to convert textual
errors to objects, and can be overrided by the user. errors to objects, and can be overridden by the user.
It accepts a single argument which is a hash reference to named parameters. It accepts a single argument which is a hash reference to named parameters.
Currently the only named parameter passed is C<'text'> which is the text Currently the only named parameter passed is C<'text'> which is the text

View File

@ -18,7 +18,7 @@
* %r0 - temp * %r0 - temp
* %r3 - argument (pointer to 5 words of SHA state) * %r3 - argument (pointer to 5 words of SHA state)
* %r4 - argument (pointer to data to hash) * %r4 - argument (pointer to data to hash)
* %r5 - Contant K in SHA round (initially number of blocks to hash) * %r5 - Constant K in SHA round (initially number of blocks to hash)
* %r6-%r10 - Working copies of SHA variables A..E (actually E..A order) * %r6-%r10 - Working copies of SHA variables A..E (actually E..A order)
* %r11-%r26 - Data being hashed W[]. * %r11-%r26 - Data being hashed W[].
* %r27-%r31 - Previous copies of A..E, for final add back. * %r27-%r31 - Previous copies of A..E, for final add back.
@ -48,7 +48,7 @@
* E += ROTL(A,5) + F(B,C,D) + W[i] + K; B = ROTL(B,30) * E += ROTL(A,5) + F(B,C,D) + W[i] + K; B = ROTL(B,30)
* Then the variables are renamed: (A,B,C,D,E) = (E,A,B,C,D). * Then the variables are renamed: (A,B,C,D,E) = (E,A,B,C,D).
* *
* Every 20 rounds, the function F() and the contant K changes: * Every 20 rounds, the function F() and the constant K changes:
* - 20 rounds of f0(b,c,d) = "bit wise b ? c : d" = (^b & d) + (b & c) * - 20 rounds of f0(b,c,d) = "bit wise b ? c : d" = (^b & d) + (b & c)
* - 20 rounds of f1(b,c,d) = b^c^d = (b^d)^c * - 20 rounds of f1(b,c,d) = b^c^d = (b^d)^c
* - 20 rounds of f2(b,c,d) = majority(b,c,d) = (b&d) + ((b^d)&c) * - 20 rounds of f2(b,c,d) = majority(b,c,d) = (b&d) + ((b^d)&c)
@ -57,7 +57,7 @@
* These are all scheduled for near-optimal performance on a G4. * These are all scheduled for near-optimal performance on a G4.
* The G4 is a 3-issue out-of-order machine with 3 ALUs, but it can only * The G4 is a 3-issue out-of-order machine with 3 ALUs, but it can only
* *consider* starting the oldest 3 instructions per cycle. So to get * *consider* starting the oldest 3 instructions per cycle. So to get
* maximum performace out of it, you have to treat it as an in-order * maximum performance out of it, you have to treat it as an in-order
* machine. Which means interleaving the computation round t with the * machine. Which means interleaving the computation round t with the
* computation of W[t+4]. * computation of W[t+4].
* *

View File

@ -1163,7 +1163,7 @@ static unsigned long unpack_object_header(struct packed_git *p,
/* use_pack() assures us we have [base, base + 20) available /* use_pack() assures us we have [base, base + 20) available
* as a range that we can look at at. (Its actually the hash * as a range that we can look at at. (Its actually the hash
* size that is assurred.) With our object header encoding * size that is assured.) With our object header encoding
* the maximum deflated object size is 2^137, which is just * the maximum deflated object size is 2^137, which is just
* insane, so we know won't exceed what we have been given. * insane, so we know won't exceed what we have been given.
*/ */

View File

@ -87,7 +87,7 @@ test_expect_success 'three-way not complaining on an untracked path in both' '
git-read-tree -m -u branch-point master side git-read-tree -m -u branch-point master side
' '
test_expect_success 'three-way not cloberring a working tree file' ' test_expect_success 'three-way not clobbering a working tree file' '
git reset --hard && git reset --hard &&
rm -f file2 subdir/file2 file3 subdir/file3 && rm -f file2 subdir/file2 file3 subdir/file3 &&

View File

@ -106,21 +106,21 @@ test_expect_success 'read-tree' '
cmp ../one ../original.one cmp ../one ../original.one
' '
test_expect_success 'no file/rev ambuguity check inside .git' ' test_expect_success 'no file/rev ambiguity check inside .git' '
cd $HERE && cd $HERE &&
git commit -a -m 1 && git commit -a -m 1 &&
cd $HERE/.git && cd $HERE/.git &&
git show -s HEAD git show -s HEAD
' '
test_expect_success 'no file/rev ambuguity check inside a bare repo' ' test_expect_success 'no file/rev ambiguity check inside a bare repo' '
cd $HERE && cd $HERE &&
git clone -s --bare .git foo.git && git clone -s --bare .git foo.git &&
cd foo.git && GIT_DIR=. git show -s HEAD cd foo.git && GIT_DIR=. git show -s HEAD
' '
# This still does not work as it should... # This still does not work as it should...
: test_expect_success 'no file/rev ambuguity check inside a bare repo' ' : test_expect_success 'no file/rev ambiguity check inside a bare repo' '
cd $HERE && cd $HERE &&
git clone -s --bare .git foo.git && git clone -s --bare .git foo.git &&
cd foo.git && git show -s HEAD cd foo.git && git show -s HEAD

View File

@ -172,7 +172,7 @@ EOF
check_verify_failure 'verify tag-name check' check_verify_failure 'verify tag-name check'
############################################################ ############################################################
# 11. tagger line lable check #1 # 11. tagger line label check #1
cat >tag.sig <<EOF cat >tag.sig <<EOF
object $head object $head
@ -187,7 +187,7 @@ EOF
check_verify_failure '"tagger" line label check #1' check_verify_failure '"tagger" line label check #1'
############################################################ ############################################################
# 12. tagger line lable check #2 # 12. tagger line label check #2
cat >tag.sig <<EOF cat >tag.sig <<EOF
object $head object $head

View File

@ -10,7 +10,7 @@ commit id embedding:
The contents of the repository is compared to the extracted tar The contents of the repository is compared to the extracted tar
archive. The repository contains simple text files, symlinks and a archive. The repository contains simple text files, symlinks and a
binary file (/bin/sh). Only pathes shorter than 99 characters are binary file (/bin/sh). Only paths shorter than 99 characters are
used. used.
git-tar-tree applies the commit date to every file in the archive it git-tar-tree applies the commit date to every file in the archive it

View File

@ -36,7 +36,7 @@ test_expect_success \
'git-clone foo bar' 'git-clone foo bar'
test_expect_success \ test_expect_success \
'successfull clone must leave the directory' \ 'successful clone must leave the directory' \
'cd bar' 'cd bar'
test_done test_done

View File

@ -70,7 +70,7 @@ name='test svn:keywords ignoring'
test_expect_success "$name" \ test_expect_success "$name" \
'git checkout -b mybranch remotes/git-svn && 'git checkout -b mybranch remotes/git-svn &&
echo Hi again >> kw.c && echo Hi again >> kw.c &&
git commit -a -m "test keywoards ignoring" && git commit -a -m "test keywords ignoring" &&
git-svn set-tree remotes/git-svn..mybranch && git-svn set-tree remotes/git-svn..mybranch &&
git pull . remotes/git-svn' git pull . remotes/git-svn'

View File

@ -6,7 +6,7 @@ prefix ?= $(HOME)
template_dir ?= $(prefix)/share/git-core/templates/ template_dir ?= $(prefix)/share/git-core/templates/
# DESTDIR= # DESTDIR=
# Shell quote (do not use $(call) to accomodate ancient setups); # Shell quote (do not use $(call) to accommodate ancient setups);
DESTDIR_SQ = $(subst ','\'',$(DESTDIR)) DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
template_dir_SQ = $(subst ','\'',$(template_dir)) template_dir_SQ = $(subst ','\'',$(template_dir))

View File

@ -61,7 +61,7 @@ newrev_type=$(git-cat-file -t "$newrev")
case "$refname","$newrev_type" in case "$refname","$newrev_type" in
refs/tags/*,commit) refs/tags/*,commit)
# un-annoted tag # un-annotated tag
refname_type="tag" refname_type="tag"
short_refname=${refname##refs/tags/} short_refname=${refname##refs/tags/}
if [ $allowunannotated != "true" ]; then if [ $allowunannotated != "true" ]; then