Skip to content

Commit c580981

Browse files
authored
fix typo: add space (GH-18853)
Fix typo in cmdline.rst Add space between the `-m` option and the module name (`timeit`).
1 parent 28ca43b commit c580981

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
@@ -109,8 +109,8 @@ source.
109109
Many standard library modules contain code that is invoked on their execution
110110
as a script. An example is the :mod:`timeit` module::
111111

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

115115
.. audit-event:: cpython.run_module module-name cmdoption-m
116116

0 commit comments

Comments
 (0)