diff rhodecode/lib/vcs/backends/hg/repository.py @ 4089:a5888ca796b5

Fixed spelling of get's to gets
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 16 Jul 2013 21:54:28 +0200
parents 218ed589e44a
children ffd45b185016
line wrap: on
line diff
--- a/rhodecode/lib/vcs/backends/hg/repository.py	Tue Jul 16 21:41:03 2013 +0200
+++ b/rhodecode/lib/vcs/backends/hg/repository.py	Tue Jul 16 21:54:28 2013 +0200
@@ -113,7 +113,7 @@
 
     def _get_branches(self, normal=True, closed=False):
         """
-        Get's branches for this repository
+        Gets branches for this repository
         Returns only not closed branches by default
 
         :param closed: return also closed branches for mercurial
@@ -155,7 +155,7 @@
     @LazyProperty
     def tags(self):
         """
-        Get's tags for this repository
+        Gets tags for this repository
         """
         return self._get_tags()
 
@@ -234,7 +234,7 @@
     @LazyProperty
     def bookmarks(self):
         """
-        Get's bookmarks for this repository
+        Gets bookmarks for this repository
         """
         return self._get_bookmarks()
 
@@ -411,7 +411,7 @@
 
     def _get_revision(self, revision):
         """
-        Get's an ID revision given as str. This will always return a fill
+        Gets an ID revision given as str. This will always return a fill
         40 char revision number
 
         :param revision: str or int or None