Skip to content

Commit 4384211

Browse files
Apply suggestions from code review
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
1 parent 0fc4a92 commit 4384211

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/library/profiling.sampling.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ and the base instruction.
406406

407407
Opcode information appears in several output formats:
408408

409-
- **Flame graphs**: Hovering over a frame displays a tooltip with bytecode
409+
- **Flame graphs**: Hovering over a frame displays a tooltip with a bytecode
410410
instruction breakdown, showing which opcodes consumed time in that function
411411
- **Heatmap**: Expandable bytecode panels per source line show instruction
412412
breakdown with specialization percentages
@@ -799,7 +799,7 @@ an interactive flame graph visualization::
799799

800800
.. only:: html
801801

802-
`Try the interactive example <../_static/tachyon-example-flamegraph.html>`__.
802+
`Try the interactive example <../_static/tachyon-example-flamegraph.html>`__!
803803

804804
If no output file is specified, the profiler generates a filename based on
805805
the process ID (for example, ``flamegraph.12345.html``).
@@ -958,7 +958,7 @@ can be expanded to show which bytecode instructions consumed time:
958958

959959
.. only:: html
960960

961-
`Try the interactive example <../_static/tachyon-example-heatmap.html>`__.
961+
`Try the interactive example <../_static/tachyon-example-heatmap.html>`__!
962962

963963
Heatmaps are especially useful when you know which file contains a performance
964964
issue but need to identify the specific lines. Many developers prefer this
@@ -982,8 +982,8 @@ data, similar to the ``top`` command for system processes::
982982
:align: center
983983
:width: 100%
984984

985-
Live mode displays real-time profiling statistics showing combined
986-
statistics from multiple threads in a multi-threaded application.
985+
Live mode displays real-time profiling statistics, showing combined
986+
data from multiple threads in a multi-threaded application.
987987

988988
The display updates continuously as new samples arrive, showing the current
989989
hottest functions. This mode requires the :mod:`curses` module, which is
@@ -1005,7 +1005,7 @@ frequently, including specialized variants and their base opcodes.
10051005
:align: center
10061006
:width: 100%
10071007

1008-
Live mode with ``--opcodes`` enabled shows an opcode panel with bytecode
1008+
Live mode with ``--opcodes`` enabled shows an opcode panel with a bytecode
10091009
instruction breakdown for the selected function.
10101010

10111011

0 commit comments

Comments
 (0)