# HG changeset patch # User Martin Geisler # Date 2008-08-12 11:45:48 # Node ID b92baef99ebf17c647b84d10f910a3a164d8a74b # Parent 1a14608bdeffaf32bc8f42161ec4710f94c321ae Fixed docstring typos diff --git a/mercurial/revlog.py b/mercurial/revlog.py --- a/mercurial/revlog.py +++ b/mercurial/revlog.py @@ -421,7 +421,7 @@ class revlog(object): 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 @@ class revlog(object): 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: