Skip to content

Commit ce38a7e

Browse files
chinwobblebenney
andauthored
doc: fix typos (#2359)
* doc: fix typo in tutorial * doc: fix typo in GCStats report * doc: fix grammar in tutorial --------- Co-authored-by: benney <benney@precision-5480>
1 parent b3caefb commit ce38a7e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/PerfView/SupportFiles/UsersGuide.htm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ <h4>
504504
<p>
505505
The bottom up view did an excellent job of determining that the get_Now() method
506506
as well as the &#39;SpinForASecond&#39; consume the largest amount of time and thus
507-
are worth looking at closely.&nbsp;&nbsp;&nbsp;&nbsp; This corresponds beautify
507+
are worth looking at closely.&nbsp;&nbsp;&nbsp;&nbsp; This corresponds
508508
to our expectations given the source code in <a href="Tutorial.cs.txt">Tutorial.cs</a>.&nbsp;&nbsp;&nbsp;
509509
However it can also be useful to understand where CPU time was consumed from the
510510
top down.&nbsp; This is what the <a href="#CallTreeView">CallTree view</a> is for.&nbsp;&nbsp;
@@ -529,7 +529,7 @@ <h4>
529529
stacks), which typically run in the 5-10% range.&nbsp;&nbsp; In this case it seems
530530
to be about 6%).&nbsp;&nbsp; The &#39;When&#39; column also clearly shows how one
531531
instance of RecSpin runs SpinForASecond (for exactly a second) and then calls a
532-
RecSpinHelper which does consumes close to 100% of the CPU for the rest of the time.
532+
RecSpinHelper which consumes close to 100% of the CPU for the rest of the time.
533533
.&nbsp;&nbsp; The call Tree is a wonderful top-down synopsis.&nbsp;
534534
</p>
535535
<h4>Getting a &#39;coarser&#39; view</h4>
@@ -539,9 +539,9 @@ <h4>Getting a &#39;coarser&#39; view</h4>
539539
use this fact and the &#39;Fold %&#39; functionality to get an even coarser view
540540
of the &#39;top&#39; of the call tree.&nbsp;&nbsp; With all nodes expanded, simply
541541
right click on the window and select &#39;Increase Fold %&#39; (or easier hit the
542-
F7 key).&nbsp; This increases the number it the Fold % textbox by 1.6X.&nbsp;&nbsp;
542+
F7 key).&nbsp; This increases the number in the Fold % textbox by 1.6X.&nbsp;&nbsp;
543543
By hitting the F7 key repeatedly you keep trimming down the &#39;bottoms&#39; of
544-
the stacks until you only see only the methods that use a large amount of CPU time.&nbsp;&nbsp;&nbsp;
544+
the stacks until you only see methods that use a large amount of CPU time.&nbsp;&nbsp;&nbsp;
545545
The following image shows the CallTreeView&nbsp; after hitting F7 seven times.&nbsp;&nbsp;
546546
</p>
547547
<center>
@@ -1804,7 +1804,7 @@ <h4>
18041804
<p>
18051805
A typical GC Memory investigation includes dump of the GC heap. While this gives
18061806
very detailed information about the heap at the time the snapshot was taken, it
1807-
give no information about the GC behavior over time. This is what the GCStats report
1807+
gives no information about the GC behavior over time. This is what the GCStats report
18081808
does. To get a GCStats reports you must <a href="#CollectingData">Collect Event Data</a>
18091809
as you would for a CPU investigation (the GC events are on by default). When you
18101810
open the resulting ETL file one of the children will be a 'GCStats' view. Opening

0 commit comments

Comments
 (0)