# HG changeset patch # User Thomas Arendsen Hein # Date 1159564462 -7200 # Node ID a32f65549b9e3f1d50bbfd10c856914f9a3c6e11 # Parent e18c3d08528dfce2ac5064025275dac390902ef2 Documentation clarification for --update option to pull and unbundle diff -r e18c3d08528d -r a32f65549b9e mercurial/commands.py --- 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":