mercurial/commands.py
changeset 15849 513ca86b88ef
parent 15837 cd956049fc14
child 15850 920433707a01
--- a/mercurial/commands.py	Wed Jan 11 09:27:53 2012 -0600
+++ b/mercurial/commands.py	Fri Jan 13 11:23:45 2012 +0100
@@ -4216,9 +4216,9 @@
                 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')),
     ],