From bc4e75112195429b3d76c21caad86abc607cc8b8 Mon Sep 17 00:00:00 2001 From: Tommy Groshong <1794859+tgroshon@users.noreply.github.com> Date: Sun, 15 Aug 2021 17:25:22 -0400 Subject: [PATCH] Typo: 'occured' -> 'occurred' in comment (#22094) --- .../src/content-views/SnapshotsView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-devtools-scheduling-profiler/src/content-views/SnapshotsView.js b/packages/react-devtools-scheduling-profiler/src/content-views/SnapshotsView.js index 545789350e..c0d48e0616 100644 --- a/packages/react-devtools-scheduling-profiler/src/content-views/SnapshotsView.js +++ b/packages/react-devtools-scheduling-profiler/src/content-views/SnapshotsView.js @@ -63,7 +63,7 @@ export class SnapshotsView extends View { let x = visibleArea.origin.x; - // Rather than drawing each snapshot where it occured, + // Rather than drawing each snapshot where it occurred, // draw them at fixed intervals and just show the nearest one. while (x < visibleArea.origin.x + visibleArea.size.width) { const snapshot = this._findClosestSnapshot(x);