@@ -124,7 +124,7 @@ summaryViewNew builder = do
124124 [ cellText := show ovf ]
125125 addSparksColumn " Dud" $ \ (_, SparkCounts _ _ _ dud _ _) ->
126126 [ cellText := show dud ]
127- addSparksColumn " GC'd " $ \ (_, SparkCounts _ _ _ _ gc _) ->
127+ addSparksColumn " GCed " $ \ (_, SparkCounts _ _ _ _ gc _) ->
128128 [ cellText := show gc ]
129129 addSparksColumn " Fizzled" $ \ (_, SparkCounts _ _ _ _ _ fiz) ->
130130 [ cellText := show fiz ]
@@ -714,7 +714,7 @@ accumEvent !statsAccum ev =
714714 -- For events that contain discrete increments. We assume the event
715715 -- is emitted close to the end of the process it measures,
716716 -- so we ignore the first found event, because most of the process
717- -- could have happened before the start of the current inverval .
717+ -- could have happened before the start of the current interval .
718718 -- This is consistent with @alterCounter@. For interval beginning
719719 -- at time 0, we start with @Just 0@.
720720 alterIncrement _ Nothing = Just 0
@@ -881,7 +881,7 @@ accumEvent !statsAccum ev =
881881 }
882882 -- Cap is not in the GC. Mark it as idle to complete
883883 -- the identification of caps that take part
884- -- in the current GC. Without overwritin the mode,
884+ -- in the current GC. Without overwriting the mode,
885885 -- the cap could be processed later on as if
886886 -- it took part in the GC, giving wrong results.
887887 ModeEnd -> dGC { gcMode = ModeIdle }
@@ -934,7 +934,7 @@ accumEvent !statsAccum ev =
934934 ModeIdle -> errorAs " scanEvents: EndGC ModeIdle"
935935 $ sd { dGCTable = IM. insert cap endedGC dGCTable }
936936 SparkCounters crt dud ovf cnv fiz gcd _rem ->
937- -- We are guranteed the first spark counters event has all zeroes,
937+ -- We are guaranteed the first spark counters event has all zeroes,
938938 -- do we don't need to rig the counters for maximal interval.
939939 let current = RtsSpark crt dud ovf cnv fiz gcd
940940 in sd { dsparkTable =
0 commit comments