summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2023-10-05 17:27:19 (GMT)
committerGitHub <noreply@github.com>2023-10-05 17:27:19 (GMT)
commita13620685f68957c965fca89343a0e91f95f1bab (patch)
tree92c3fc9749216568467fa8d82c52656bda2a072f /Doc
parenta973bf0f97e55ace9eab100f9eb95d7eedcb28ac (diff)
downloadcpython-a13620685f68957c965fca89343a0e91f95f1bab.zip
cpython-a13620685f68957c965fca89343a0e91f95f1bab.tar.gz
cpython-a13620685f68957c965fca89343a0e91f95f1bab.tar.bz2
Fix env var typo in perf profiling docs (#110404)
Fix typo in docs
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/perf_profiling.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/howto/perf_profiling.rst b/Doc/howto/perf_profiling.rst
index 61812c1..af7b67d 100644
--- a/Doc/howto/perf_profiling.rst
+++ b/Doc/howto/perf_profiling.rst
@@ -162,8 +162,7 @@ the :option:`!-X` option takes precedence over the environment variable.
Example, using the environment variable::
- $ PYTHONPERFSUPPORT=1
- $ python script.py
+ $ PYTHONPERFSUPPORT=1 python script.py
$ perf report -g -i perf.data
Example, using the :option:`!-X` option::