# HG changeset patch # User Greg Ward # Date 1446921502 18000 # Node ID 44e9c0a264de7987f31d8546b43dc7321c9391d9 # Parent 0e8936e7cb89ad9fdc1099e57dbc5f13d2b4daa3 evolve: improve help for prev, next commands diff -r 0e8936e7cb89 -r 44e9c0a264de hgext/evolve.py --- a/hgext/evolve.py Sat Nov 07 13:37:26 2015 -0500 +++ b/hgext/evolve.py Sat Nov 07 13:38:22 2015 -0500 @@ -2055,7 +2055,9 @@ ('n', 'dry-run', False, _('do not perform actions, just print what would be done'))], '[OPTION]...') def cmdprevious(ui, repo, **opts): - """update to parent and display summary lines""" + """update to parent revision + + Displays the summary line of the destination for clarity.""" wkctx = repo[None] wparents = wkctx.parents() dryrunopt = opts['dry_run'] @@ -2106,11 +2108,12 @@ ('n', 'dry-run', False, _('do not perform actions, just print what would be done'))], '[OPTION]...') def cmdnext(ui, repo, **opts): - """update to next child - - You can use the --evolve flag to get unstable children evolved on demand. - - The summary line of the destination is displayed for clarity""" + """update to next child revision + + Use the ``--evolve`` flag to evolve unstable children on demand. + + Displays the summary line of the destination for clarity. + """ wkctx = repo[None] wparents = wkctx.parents() dryrunopt = opts['dry_run']