chiark / gitweb /
Assorted typos
authorPavel Roskin <proski@gnu.org>
Sun, 4 Feb 2007 05:32:37 +0000 (00:32 -0500)
committerCatalin Marinas <catalin.marinas@gmail.com>
Sun, 4 Feb 2007 22:24:27 +0000 (22:24 +0000)
Signed-off-by: Pavel Roskin <proski@gnu.org>
debian/copyright
stgit/commands/branch.py
stgit/stack.py
t/t1301-assimilate.sh
t/test-lib.sh

index 345789d63701a49159a1cccee6b8664cbfc78f58..15d867942aac29cd60bba65e4d27712a7bcdcf59 100644 (file)
@@ -1,6 +1,6 @@
 This package was downloaded from http://www.procode.org/stgit/
 
-Copyright Holder: Cataling Marinas <catalin.marinas@gmail.com>
+Copyright Holder: Catalin Marinas <catalin.marinas@gmail.com>
                   and various contributors
 
 License:
index f074d4735990a9f87aa8af7fc7ddf121ff73aead..d7ddedba73f097a53dcb0126753290845b8a848b 100644 (file)
@@ -126,7 +126,7 @@ def func(parser, options, args):
         if len(args) >= 2:
             try:
                 if git.rev_parse(args[1]) == git.rev_parse('refs/heads/' + args[1]):
-                    # we are for sure refering to a branch
+                    # we are for sure referring to a branch
                     parentbranch = 'refs/heads/' + args[1]
                     print 'Recording "%s" as parent branch.' % parentbranch
                 elif git.rev_parse(args[1]) and re.search('/', args[1]):
index f33fbace97ffcce8c5364ad5017fa810efd8cefa..ee1bf1f6ea3583ad05fd0329c483ea5055cffe92 100644 (file)
@@ -658,7 +658,7 @@ class Series(StgitObject):
             os.rmdir(self.__trash_dir)
 
             # FIXME: find a way to get rid of those manual removals
-            # (move functionnality to StgitObject ?)
+            # (move functionality to StgitObject ?)
             if os.path.exists(self.__applied_file):
                 os.remove(self.__applied_file)
             if os.path.exists(self.__unapplied_file):
@@ -1044,7 +1044,7 @@ class Series(StgitObject):
             else:
                 # we store the correctly merged files only for
                 # tracking the conflict history. Note that the
-                # git.merge() operations shouls always leave the index
+                # git.merge() operations should always leave the index
                 # in a valid state (i.e. only stage 0 files)
                 self.refresh_patch(cache_update = False, log = 'push(c)')
                 raise StackException, str(ex)
index 26b263c21e2ad669409ce26e450cd3280ae22b84..906f5bbcf065c3489517c23500dd4367b4366efa 100755 (executable)
@@ -65,7 +65,7 @@ test_expect_success \
     '
 
 test_expect_success \
-    'Create a mege commit' \
+    'Create a merge commit' \
     '
     git checkout -b br master^^ &&
     echo woof > woof.txt &&
index b44a5908245f4820c70772fed2673bdf9a3ab9f0..3274b84f08d7eb1808fd5f9229a07c55838c9316 100755 (executable)
@@ -164,7 +164,7 @@ test_create_repo () {
        mv .git/hooks .git/hooks-disabled
        echo "empty start" |
        git-commit-tree `git-write-tree` >.git/refs/heads/master 2>&4 ||
-       error "cannot run git-commit -- is your git-core funtionning?"
+       error "cannot run git-commit -- is your git-core functioning?"
        cd "$owd"
 }