changeset 6912:b92baef99ebf

Fixed docstring typos
author Martin Geisler <mg@daimi.au.dk>
date Tue, 12 Aug 2008 13:45:48 +0200
parents 1a14608bdeff
children 580d5e6bfc1f
files mercurial/revlog.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/revlog.py	Sat Mar 29 23:05:45 2008 +0100
+++ b/mercurial/revlog.py	Tue Aug 12 13:45:48 2008 +0200
@@ -421,7 +421,7 @@
     A revlog consists of two parts, an index and the revision data.
 
     The index is a file with a fixed record size containing
-    information on each revision, includings its nodeid (hash), the
+    information on each revision, including its nodeid (hash), the
     nodeids of its parents, the position and offset of its data within
     the data file, and the revision it's based on. Finally, each entry
     contains a linkrev entry that can serve as a pointer to external
@@ -942,7 +942,7 @@
                               self.revision(self.node(rev2)))
 
     def revision(self, node):
-        """return an uncompressed revision of a given"""
+        """return an uncompressed revision of a given node"""
         if node == nullid:
             return ""
         if self._cache and self._cache[0] == node: