diff mercurial/context.py @ 17427:57c6c24b9bc4

improve some comments and docstrings, fixing issues found when spell checking
author Mads Kiilerich <mads@kiilerich.com>
date Tue, 21 Aug 2012 02:41:20 +0200
parents e95ec38f86b0
children fb72eec7efd8
line wrap: on
line diff
--- a/mercurial/context.py	Tue Aug 21 02:41:20 2012 +0200
+++ b/mercurial/context.py	Tue Aug 21 02:41:20 2012 +0200
@@ -237,8 +237,8 @@
 
     def extinct(self):
         """True if the changeset is extinct"""
-        # We should just compute a cache a check against it.
-        # see revset implementation for details
+        # We should just compute a cache and check against it.
+        # See revset implementation for details.
         #
         # But this naive implementation does not require cache
         if self.phase() <= phases.public: