Skip to content

Commit 516e673

Browse files
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 c580981) Co-authored-by: Julin S <[email protected]>
1 parent 89fabe5 commit 516e673

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/using/cmdline.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ source.
108108
Many standard library modules contain code that is invoked on their execution
109109
as a script. An example is the :mod:`timeit` module::
110110

111-
python -mtimeit -s 'setup here' 'benchmarked code here'
112-
python -mtimeit -h # for details
111+
python -m timeit -s 'setup here' 'benchmarked code here'
112+
python -m timeit -h # for details
113113

114114
.. seealso::
115115
:func:`runpy.run_module`

0 commit comments

Comments
 (0)