diff -r abe52cf492ee -r 5a17c0d41a00 hgext/evolve.py --- a/hgext/evolve.py Wed May 09 13:08:46 2012 +0200 +++ b/hgext/evolve.py Wed May 09 14:24:56 2012 +0200 @@ -7,7 +7,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -'''A set of command to make changeset evolve.''' +'''a set of commands to handle changeset mutation''' from mercurial import cmdutil from mercurial import scmutil @@ -187,7 +187,7 @@ ], '') def stabilize(ui, repo, **opts): - """move changeset out of they unstable state + """move changeset out of the unstable state By default only works on changeset that will be rebase on ancestors of the current working directory parent (included)""" @@ -250,8 +250,9 @@ @command('^gdown', [], - 'update to working directory parent an display summary lines') + '') def cmdgdown(ui, repo): + """update to working directory parent an display summary lines""" wkctx = repo[None] wparents = wkctx.parents() if len(wparents) != 1: @@ -272,8 +273,9 @@ @command('^gup', [], - 'update to working directory children an display summary lines') + '') def cmdup(ui, repo): + """update to working directory children an display summary lines""" wkctx = repo[None] wparents = wkctx.parents() if len(wparents) != 1: