From a128ab1ae52b39897714b1ebf49f80d57697aec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=A9o=20Bouvard?= Date: Tue, 26 Mar 2024 20:37:46 +0100 Subject: [PATCH] Fix typo in example docs (#177) --- doc/examples.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/examples.rst b/doc/examples.rst index 9ef23e9e..9897d9ee 100644 --- a/doc/examples.rst +++ b/doc/examples.rst @@ -31,8 +31,9 @@ bench_async_func() method timeit() method --------------- -Benchmark using the :meth:`Runner.timeit` method to performance of sorting a -sorted list of 1000 numbers using a ``key`` function (which does nothing): +Benchmark using the :meth:`Runner.timeit` method to measure the performance of +sorting a sorted list of 1000 numbers using a ``key`` function (which does +nothing): .. literalinclude:: examples/bench_timeit.py