hgext/evolve.py
branchstable
changeset 724 fa049c1d9445
parent 723 2a325626bf06
child 741 892a6d708c8f
--- a/hgext/evolve.py	Fri May 31 18:45:31 2013 +0200
+++ b/hgext/evolve.py	Fri May 31 18:47:01 2013 +0200
@@ -1204,7 +1204,7 @@
          [],
          '')
 def cmdgdown(ui, repo):
-    """update to parent an display summary lines"""
+    """update to parent and display summary lines"""
     wkctx = repo[None]
     wparents = wkctx.parents()
     if len(wparents) != 1:
@@ -1227,7 +1227,7 @@
          [],
          '')
 def cmdup(ui, repo):
-    """update to child an display summary lines"""
+    """update to child and display summary lines"""
     wkctx = repo[None]
     wparents = wkctx.parents()
     if len(wparents) != 1: