mercurial/repository.py
changeset 39235 43387fd2aa1f
parent 39234 3682b49e0213
child 39240 2af6b2d8d1d8
--- a/mercurial/repository.py	Thu Aug 09 19:27:54 2018 -0700
+++ b/mercurial/repository.py	Fri Aug 10 11:00:06 2018 -0700
@@ -1000,15 +1000,15 @@
         interface.
         """
 
-    def get(dir, node, verify=True):
+    def get(tree, node, verify=True):
         """Retrieve the manifest instance for a given directory and binary node.
 
         ``node`` always refers to the node of the root manifest (which will be
         the only manifest if flat manifests are being used).
 
-        If ``dir`` is the empty string, the root manifest is returned. Otherwise
-        the manifest for the specified directory will be returned (requires
-        tree manifests).
+        If ``tree`` is the empty string, the root manifest is returned.
+        Otherwise the manifest for the specified directory will be returned
+        (requires tree manifests).
 
         If ``verify`` is True, ``LookupError`` is raised if the node is not
         known.