diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-01-13 15:53:15 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-01-13 15:53:15 +0900 |
commit | f8dec554476c17510208e0fe08956b759cc76d9c (patch) | |
tree | 2ea624e4dcba68933bf8d612562478548930f17f | |
parent | 840b5828e752f4d19d2c569ea4299dcc17c506e3 (diff) | |
download | sphinx-git-f8dec554476c17510208e0fe08956b759cc76d9c.tar.gz |
Update docstring
-rw-r--r-- | sphinx/cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/cmdline.py b/sphinx/cmdline.py index c2668065d..365238607 100644 --- a/sphinx/cmdline.py +++ b/sphinx/cmdline.py @@ -89,7 +89,7 @@ def jobs_argument(value): """ Special type to handle 'auto' flags passed to 'sphinx-build' via -j flag. Can be expanded to handle other special scaling requests, such as setting job count - to (cpu_count / 2) + to cpu_count. """ if value == 'auto': return multiprocessing.cpu_count() |