summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-03-08 10:57:11 -0700
committerNed Deily <nad@python.org>2020-03-10 01:49:00 -0400
commite7ca2d3e6a83668e0176a0f5eccfb249fb2738da (patch)
treee9611b646d43c6c0beb9358ed4b98e691c95a865
parentb092892f9afd37fd3355b1e91fc5835f196ea914 (diff)
downloadcpython-git-e7ca2d3e6a83668e0176a0f5eccfb249fb2738da.tar.gz
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>
-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 6a1d7aa00d..be92642e2f 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`