# HG changeset patch # User Martin Geisler # Date 2012-01-13 10:23:45 # Node ID 513ca86b88efa119404ece8f6748d1a3a2831105 # Parent c47d69ce5208d5b5cfd2fb2f0f1d7a2b4795fbf5 phase: lowercase option help, rephrase slightly diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -4216,9 +4216,9 @@ def paths(ui, repo, search=None): ui.write("%s = %s\n" % (name, util.hidepassword(path))) @command('^phase', - [('p', 'public', False, _('Set changeset to public')), - ('d', 'draft', False, _('Set changeset to draft')), - ('s', 'secret', False, _('Set changeset to secret')), + [('p', 'public', False, _('set changeset phase to public')), + ('d', 'draft', False, _('set changeset phase to draft')), + ('s', 'secret', False, _('set changeset phase to secret')), ('f', 'force', False, _('allow to move boundary backward')), ('r', 'rev', [], _('target revision')), ],