mercurial/commands.py
changeset 3198 a32f65549b9e
parent 3197 e18c3d08528d
child 3199 096f1c73cdc3
--- a/mercurial/commands.py	Fri Sep 29 13:01:19 2006 -0700
+++ b/mercurial/commands.py	Fri Sep 29 23:14:22 2006 +0200
@@ -2973,7 +2973,7 @@
     "^pull":
         (pull,
          [('u', 'update', None,
-           _('update the working directory to tip after pull')),
+           _('update to new tip if changesets were pulled')),
           ('f', 'force', None,
            _('run even when remote repository is unrelated')),
           ('r', 'rev', [], _('a specific revision up to which you would like to pull')),
@@ -3070,7 +3070,7 @@
     "unbundle":
         (unbundle,
          [('u', 'update', None,
-           _('update the working directory to tip after unbundle'))],
+           _('update to new tip if changesets were unbundled'))],
          _('hg unbundle [-u] FILE')),
     "debugundo|undo": (undo, [], _('hg undo')),
     "^update|up|checkout|co":