evolve: fix typo stable
authorAndré Sintzoff <andre.sintzoff@gmail.com>
Fri, 31 May 2013 18:47:01 +0200
branchstable
changeset 724 fa049c1d9445
parent 723 2a325626bf06
child 725 235a942eba3f
evolve: fix typo
hgext/evolve.py
--- 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: