You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by tv...@apache.org on 2013/06/21 16:09:36 UTC

git commit: [#6272] Fix typo.

Updated Branches:
  refs/heads/cj/6272 bf899478d -> 1aeb84c72


[#6272] Fix typo.

Signed-off-by: Tim Van Steenburgh <tv...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/1aeb84c7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/1aeb84c7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/1aeb84c7

Branch: refs/heads/cj/6272
Commit: 1aeb84c72dd7f7fb1e0d1698b1019725c1aa9431
Parents: bf89947
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Fri Jun 21 14:05:30 2013 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Fri Jun 21 14:05:30 2013 +0000

----------------------------------------------------------------------
 Allura/allura/model/repository.py   | 4 ++--
 ForgeGit/forgegit/model/git_repo.py | 2 +-
 ForgeSVN/forgesvn/model/svn.py      | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/1aeb84c7/Allura/allura/model/repository.py
----------------------------------------------------------------------
diff --git a/Allura/allura/model/repository.py b/Allura/allura/model/repository.py
index aefbdca..3431e41 100644
--- a/Allura/allura/model/repository.py
+++ b/Allura/allura/model/repository.py
@@ -103,7 +103,7 @@ class RepositoryImplementation(object):
 
     def log(self, revs=None, path=None, exclude=None, id_only=True, **kw): # pragma no cover
         """
-        Returns a generator that returns information about commits reacable
+        Returns a generator that returns information about commits reachable
         by revs.
 
         revs can be None or a list or tuple of identifiers, each of which
@@ -398,7 +398,7 @@ class Repository(Artifact, ActivityObject):
 
     def log(self, revs=None, path=None, exclude=None, id_only=True, **kw):
         """
-        Returns a generator that returns information about commits reacable
+        Returns a generator that returns information about commits reachable
         by revs which modify path.
 
         revs can either be a single revision identifier or a list or tuple

http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/1aeb84c7/ForgeGit/forgegit/model/git_repo.py
----------------------------------------------------------------------
diff --git a/ForgeGit/forgegit/model/git_repo.py b/ForgeGit/forgegit/model/git_repo.py
index 4a8b10a..c66ae91 100644
--- a/ForgeGit/forgegit/model/git_repo.py
+++ b/ForgeGit/forgegit/model/git_repo.py
@@ -270,7 +270,7 @@ class GitImplementation(M.RepositoryImplementation):
 
     def log(self, revs=None, path=None, exclude=None, id_only=True, **kw):
         """
-        Returns a generator that returns information about commits reacable
+        Returns a generator that returns information about commits reachable
         by revs.
 
         revs can be None or a list or tuple of revisions, each of which

http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/1aeb84c7/ForgeSVN/forgesvn/model/svn.py
----------------------------------------------------------------------
diff --git a/ForgeSVN/forgesvn/model/svn.py b/ForgeSVN/forgesvn/model/svn.py
index dcb08e0..9d28ce1 100644
--- a/ForgeSVN/forgesvn/model/svn.py
+++ b/ForgeSVN/forgesvn/model/svn.py
@@ -479,7 +479,7 @@ class SVNImplementation(M.RepositoryImplementation):
 
     def log(self, revs=None, path=None, exclude=None, id_only=True, page_size=25, **kw):
         """
-        Returns a generator that returns information about commits reacable
+        Returns a generator that returns information about commits reachable
         by revs.
 
         revs can be None or a list or tuple of identifiers, each of which