[Python-checkins] fix typo: add space (GH-18853)

Julin S webhook-mailer at python.org
Sun Mar 8 13:52:24 EDT 2020


https://github.com/python/cpython/commit/c580981ba01c4d9f721dbdd88208ba37704e0217
commit: c580981ba01c4d9f721dbdd88208ba37704e0217
branch: master
author: Julin S <48789920+ju-sh at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-03-08T10:52:15-07:00
summary:

fix typo: add space (GH-18853)



Fix typo in cmdline.rst
Add space between the `-m` option and the module name (`timeit`).

files:
M Doc/using/cmdline.rst

diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
index 2206e5065be1f..9b30c288211ed 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
 



More information about the Python-checkins mailing list