From cab0b7db561be36e956e6121effd69950d12c1f9 Mon Sep 17 00:00:00 2001 From: Dov Murik Date: Tue, 10 Feb 2026 13:52:09 -0500 Subject: [PATCH] docs: profiling.sampling: Fix sampling-rate default value description --- Doc/library/profiling.sampling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/profiling.sampling.rst b/Doc/library/profiling.sampling.rst index ac1098698c8cbb..87e431969393b6 100644 --- a/Doc/library/profiling.sampling.rst +++ b/Doc/library/profiling.sampling.rst @@ -354,7 +354,7 @@ Together, these determine how many samples will be collected during a profiling session. The :option:`--sampling-rate` option (:option:`-r`) sets how frequently samples -are collected. The default is 1 kHz (10,000 samples per second):: +are collected. The default is 1 kHz (1,000 samples per second):: python -m profiling.sampling run -r 20khz script.py