@@ -44,7 +44,7 @@ const traceBounds: Types.Timing.TraceWindowMicro = {
4444 * Note that these Maps will have the same values in them; these are just keyed
4545 * differently to make look-ups easier.
4646 *
47- * We also additionally maintain an array of only navigations that occured on
47+ * We also additionally maintain an array of only navigations that occurred on
4848 * the main frame. In many places in the UI we only care about highlighting
4949 * main frame navigations, so calculating this list here is better than
5050 * filtering either of the below maps over and over again at the UI layer.
@@ -236,7 +236,7 @@ export function handleEvent(event: Types.Events.Event): void {
236236 mainFrameURL = frame . url ;
237237 }
238238 } else if ( traceHasOutermostMainFrameFlag ) {
239- // Less ideal: "guess" at the main thread by using this falg .
239+ // Less ideal: "guess" at the main thread by using this flag .
240240 if ( frame . isOutermostMainFrame ) {
241241 mainFrameId = frame . frame ;
242242 mainFrameURL = frame . url ;
@@ -376,7 +376,7 @@ export async function finalize(): Promise<void> {
376376 // the previous page. This doesn't matter too much except we often use this
377377 // URL as the visual name of the trace shown to the user (e.g. in the history
378378 // dropdown). We can be more accurate by finding the first main frame
379- // navigaton , and using its URL, if we have it.
379+ // navigation , and using its URL, if we have it.
380380 // However, to avoid doing this in a case where the first navigation is far
381381 // into the trace's lifecycle, we only do this in situations where the first
382382 // navigation happened very soon (0.5 seconds) after the trace started
0 commit comments