diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-05-03 23:21:01 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-05-03 23:21:01 +0000 |
commit | a87cc86b99d0a85c2344b52d6d1354a094ed4ef5 (patch) | |
tree | f7aba4dd3332f406c79adb7d50aff1a61616e2ca | |
parent | 6eaba1137a688c9e41005b34d27ea45891f00441 (diff) | |
download | redmine-a87cc86b99d0a85c2344b52d6d1354a094ed4ef5.tar.gz redmine-a87cc86b99d0a85c2344b52d6d1354a094ed4ef5.zip |
fix typo of app/models/repository/mercurial.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@13129 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/models/repository/mercurial.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/repository/mercurial.rb b/app/models/repository/mercurial.rb index f9339d800..abe1dfb70 100644 --- a/app/models/repository/mercurial.rb +++ b/app/models/repository/mercurial.rb @@ -155,7 +155,7 @@ class Repository::Mercurial < Repository # Revisions in root directory and sub directory are not equal. # So, in order to get correct limit, we need to get all revisions. # But, it is very heavy. - # Mercurial does not treat direcotry. + # Mercurial does not treat directory. # So, "hg log DIR" is very heavy. branch_limit = path.blank? ? limit : ( limit * 5 ) args << nodes_in_branch(rev, branch_limit) |