# HG changeset patch # User Thomas Arendsen Hein # Date 2008-11-02 16:28:03 # Node ID d14c25e823bab07cf546f14ed334770f1955840c # Parent 972737252d0586ae59eae1d4640a834f8d206609 Corrected some command synopsises diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -3035,7 +3035,7 @@ table = { ('s', 'skip', False, _('skip testing changeset')), ('c', 'command', '', _('Use command to check changeset state')), ('U', 'noupdate', False, _('do not update to target'))], - _("hg bisect [-gbsr] [REV] [-c COMMAND]")), + _("hg bisect [-gbsr] [-c CMD] [REV]")), "branch": (branch, [('f', 'force', None, @@ -3127,7 +3127,7 @@ table = { "debugstate": (debugstate, [('', 'nodates', None, _('do not display the saved mtime'))], - _('hg debugstate [OPTS]')), + _('hg debugstate [OPTION]...')), "debugwalk": (debugwalk, walkopts, _('hg debugwalk [OPTION]... [FILE]...')), "^diff": (diff, @@ -3288,7 +3288,7 @@ table = { [('l', 'list', None, _('list state of files needing merge')), ('m', 'mark', None, _('mark files as resolved')), ('u', 'unmark', None, _('unmark files as resolved'))], - _('hg resolve [OPTION] [FILES...]')), + _('hg resolve [OPTION]... [FILE]...')), "revert": (revert, [('a', 'all', None, _('revert all changes when no arguments given')),