summaryrefslogtreecommitdiffstats
path: root/Doc/using
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-03-08 17:57:11 (GMT)
committerGitHub <noreply@github.com>2020-03-08 17:57:11 (GMT)
commit516e6735b4e1dd94fc0c8eca35c19ca534c39a38 (patch)
tree90faab21552efe6c71ce8bb82a6277faa89aac09 /Doc/using
parent89fabe51af27a16ae71733334ad94921e3980e28 (diff)
downloadcpython-516e6735b4e1dd94fc0c8eca35c19ca534c39a38.zip
cpython-516e6735b4e1dd94fc0c8eca35c19ca534c39a38.tar.gz
cpython-516e6735b4e1dd94fc0c8eca35c19ca534c39a38.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.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
index 6a1d7aa..be92642 100644
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -108,8 +108,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
.. seealso::
:func:`runpy.run_module`