hgext/mq.py
branchstable
changeset 19951 d51c4d85ec23
parent 19916 fb583a1efef0
child 19997 de16c673455b
--- a/hgext/mq.py	Thu Oct 17 16:13:15 2013 +0800
+++ b/hgext/mq.py	Thu Oct 24 01:49:56 2013 +0800
@@ -80,12 +80,12 @@
 command = cmdutil.command(cmdtable)
 testedwith = 'internal'
 
-# force load strip extension formely included in mq and import some utility
+# force load strip extension formerly included in mq and import some utility
 try:
     stripext = extensions.find('strip')
 except KeyError:
     # note: load is lazy so we could avoid the try-except,
-    # but I (marmoute) prefer this explicite code.
+    # but I (marmoute) prefer this explicit code.
     class dummyui(object):
         def debug(self, msg):
             pass
@@ -651,7 +651,7 @@
         """return the mq handled parent or p1
 
         In some case where mq get himself in being the parent of a merge the
-        paappropriate parent may be p2.
+        appropriate parent may be p2.
         (eg: an in progress merge started with mq disabled)
 
         If no parent are managed by mq, p1 is returned.