diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-03-08 17:58:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 17:58:19 (GMT) |
commit | 765117dc161d7bd8317e9df7fb3f3b5caca281c2 (patch) | |
tree | 5199aee2b59259a2a74901b963aef70b4d369769 /Doc/using | |
parent | 928b4dd0edf0022190a8a296c8ea65e7ef55c694 (diff) | |
download | cpython-765117dc161d7bd8317e9df7fb3f3b5caca281c2.zip cpython-765117dc161d7bd8317e9df7fb3f3b5caca281c2.tar.gz cpython-765117dc161d7bd8317e9df7fb3f3b5caca281c2.tar.bz2 |
fix typo: add space (GH-18853)
Fix typo in cmdline.rst
Add space between the `-m` option and the module name (`timeit`).
(cherry picked from commit c580981ba01c4d9f721dbdd88208ba37704e0217)
Co-authored-by: Julin S <48789920+ju-sh@users.noreply.github.com>
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/cmdline.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 53206c7..d3f0400 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -109,8 +109,8 @@ source. Many standard library modules contain code that is invoked on their execution as a script. An example is the :mod:`timeit` module:: - python -mtimeit -s 'setup here' 'benchmarked code here' - python -mtimeit -h # for details + python -m timeit -s 'setup here' 'benchmarked code here' + python -m timeit -h # for details .. audit-event:: cpython.run_module module-name cmdoption-m |