diff hgext/mq.py @ 16188:6b52963ced73 stable

mq: fix qapplied --last and qprev documentation (issue3282) qapplied --last is qprev not qtop. v2: - Replace "previous" with "preceding" as suggested here and there
author Patrick Mezard <patrick@mezard.eu>
date Mon, 27 Feb 2012 18:23:18 +0100
parents 5de83d9ca79c
children a4413624d014 ce292f1379ba
line wrap: on
line diff
--- a/hgext/mq.py	Mon Feb 27 08:54:26 2012 -0500
+++ b/hgext/mq.py	Mon Feb 27 18:23:18 2012 +0100
@@ -1929,7 +1929,7 @@
     return 0
 
 @command("qapplied",
-         [('1', 'last', None, _('show only the last patch'))
+         [('1', 'last', None, _('show only the preceding applied patch'))
           ] + seriesopts,
          _('hg qapplied [-1] [-s] [PATCH]'))
 def applied(ui, repo, patch=None, **opts):
@@ -2224,7 +2224,7 @@
 
 @command("qprev", seriesopts, _('hg qprev [-s]'))
 def prev(ui, repo, **opts):
-    """print the name of the previous applied patch
+    """print the name of the preceding applied patch
 
     Returns 0 on success."""
     q = repo.mq