fix typo: add space (GH-18853)

Fix typo in cmdline.rst
Add space between the `-m` option and the module name (`timeit`).
This commit is contained in:
Julin S 2020-03-08 23:22:15 +05:30 committed by GitHub
parent 28ca43b7e3
commit c580981ba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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