Skip to content

Commit bb5e04a

Browse files
zcoderionelmc
authored andcommitted
Fix correction of a typo in usage
1 parent cec69f5 commit bb5e04a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Commandline options
136136
--benchmark-cprofile=COLUMN
137137
If specified measure one run with cProfile and stores
138138
10 top functions. Argument is a column to sort by.
139-
Available columns: 'ncallls_recursion', 'ncalls',
139+
Available columns: 'ncalls_recursion', 'ncalls',
140140
'tottime', 'tottime_per', 'cumtime', 'cumtime_per',
141141
'function_name'.
142142
--benchmark-storage=URI

src/pytest_benchmark/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def pytest_addoption(parser):
270270
default=None,
271271
choices=['ncalls_recursion', 'ncalls', 'tottime', 'tottime_per', 'cumtime', 'cumtime_per', 'function_name'],
272272
help="If specified measure one run with cProfile and stores 25 top functions."
273-
" Argument is a column to sort by. Available columns: 'ncallls_recursion',"
273+
" Argument is a column to sort by. Available columns: 'ncalls_recursion',"
274274
" 'ncalls', 'tottime', 'tottime_per', 'cumtime', 'cumtime_per', 'function_name'.",
275275
)
276276
add_global_options(group.addoption)

0 commit comments

Comments
 (0)