diff options
author | Julin S <48789920+ju-sh@users.noreply.github.com> | 2020-03-08 17:52:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 17:52:15 (GMT) |
commit | c580981ba01c4d9f721dbdd88208ba37704e0217 (patch) | |
tree | 442b4107734c9eae6cf3b2335a0932629948fdf2 | |
parent | 28ca43b7e30e2eaa2997c3becd8b1a837484ae5c (diff) | |
download | cpython-c580981ba01c4d9f721dbdd88208ba37704e0217.zip cpython-c580981ba01c4d9f721dbdd88208ba37704e0217.tar.gz cpython-c580981ba01c4d9f721dbdd88208ba37704e0217.tar.bz2 |
fix typo: add space (GH-18853)
Fix typo in cmdline.rst
Add space between the `-m` option and the module name (`timeit`).
-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 2206e50..9b30c28 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 |