diff options
author | Georg Brandl <georg@python.org> | 2010-01-23 08:47:54 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-23 08:47:54 +0000 |
commit | c3b0cd75b22aa09bd849a74fb92e22ba831dfcd4 (patch) | |
tree | 9f2d6ae80105b5683538e2589ee0e134ad4ba3f8 | |
parent | 6878ee8d43c7444b2521a12e47f171de7bc87b6b (diff) | |
download | cpython-git-c3b0cd75b22aa09bd849a74fb92e22ba831dfcd4.tar.gz |
#7725: fix referencing issue.
-rw-r--r-- | Doc/library/profile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst index 8370f4df65..a69a0da378 100644 --- a/Doc/library/profile.rst +++ b/Doc/library/profile.rst @@ -124,7 +124,7 @@ script. For example:: cProfile.py [-o output_file] [-s sort_order] -:option:`-s` only applies to standard output (:option:`-o` is not supplied). +``-s`` only applies to standard output (``-o`` is not supplied). Look in the :class:`Stats` documentation for valid sort values. When you wish to review the profile, you should use the methods in the |