From a2aaa63f800a478e908585f00384e065a1b3f2ab Mon Sep 17 00:00:00 2001 From: "tnagel@chromium.org" Date: Fri, 28 Feb 2014 21:47:27 +0000 Subject: [PATCH] Minor fixes to help texts It's not true (anymore?) that the number of SCM jobs for gclient sync equals the number of cores, thus the new text is less specific. BUG=none Review URL: https://codereview.chromium.org/184733007 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@254242 0039d316-1c4b-4281-b951-d872f2087c98 --- gclient.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gclient.py b/gclient.py index e2491cef1..959172a1b 100755 --- a/gclient.py +++ b/gclient.py @@ -1661,7 +1661,7 @@ def CMDsync(parser, args): '--force, such dependencies are removed even if they ' 'have local modifications. When used with --reset, ' 'all untracked directories are removed from the ' - 'working copy, exclusing those which are explicitly ' + 'working copy, excluding those which are explicitly ' 'ignored in the repository.') parser.add_option('-R', '--reset', action='store_true', help='resets any local changes before updating (git only)') @@ -1835,7 +1835,7 @@ class OptionParser(optparse.OptionParser): self.add_option( '-j', '--jobs', default=jobs, type='int', help='Specify how many SCM commands can run in parallel; defaults to ' - 'number of cpu cores (%default)') + '%default on this machine') self.add_option( '-v', '--verbose', action='count', default=0, help='Produces additional output for diagnostics. Can be used up to '