Skip to content

Commit b16b1c5

Browse files
committed
use wiktionary capitalizaiton
1 parent f389be2 commit b16b1c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/performance.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ This file will open to the "Overview" section, which gives some overall data abo
4141
the program ran, e.g., total run time, time spent doing garbage collection. One
4242
important piece of information you'll get here is percentage of the total call
4343
frames (i.e., blocks) that were interpreted (slowest, in red), L<speshed|/language/glossary#index-entry-Spesh> (faster,
44-
in orange), and JITted (fastest, in green).
44+
in orange), and jitted (fastest, in green).
4545
4646
The next section, "Routines", is probably where you'll spend the most time. It has
4747
a sortable and filterable table of routine (or block) name+file+line, the number of
4848
times it ran, the inclusive time (time spent in that routine + time spent in all
4949
routines called from it), exclusive time (just the time spent in that routine), and
50-
whether it was interpreted, speshed, or JITted (same color code as the "Overview"
50+
whether it was interpreted, speshed, or jitted (same color code as the "Overview"
5151
page). Sorting by exclusive time is a good way to know where to start optimizing.
5252
Routines with a filename that starts like C<SETTING::src/core/> or C<gen/moar/> are
5353
from the compiler, a good way to just see the stuff from your own code is to put
@@ -63,8 +63,8 @@ The "GC" section gives you detailed information about all the garbage collection
6363
that occurred.
6464
6565
The "OSR / Deopt" section gives you information about On Stack Replacements (OSRs),
66-
which is when routines are "upgraded" from interpreted to speshed or JITted. Deopts
67-
are the opposite, when speshed or JITted code has to be "downgraded" to being
66+
which is when routines are "upgraded" from interpreted to speshed or jitted. Deopts
67+
are the opposite, when speshed or jitted code has to be "downgraded" to being
6868
interpreted.
6969
7070
If the profile data is too big, it could take a long time for a browser to open

0 commit comments

Comments
 (0)