Spelling is fundamental (#16782)

This commit is contained in:
Andrew Clark
2019-09-13 16:27:18 -07:00
committed by GitHub
parent 45898d0be0
commit 45b6443c90
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ function logEvent(entries) {
eventLogSize *= 2;
if (eventLogSize > MAX_EVENT_LOG_SIZE) {
console.error(
"Scheduler Profiling: Event log exceeded maxinum size. Don't " +
"Scheduler Profiling: Event log exceeded maximum size. Don't " +
'forget to call `stopLoggingProfilingEvents()`.',
);
stopLoggingProfilingEvents();
@@ -518,7 +518,7 @@ Task 2 [Normal] │ ░░░░░░░░🡐 canceled
expect(console.error).toHaveBeenCalledTimes(1);
expect(console.error.calls.argsFor(0)[0]).toBe(
"Scheduler Profiling: Event log exceeded maxinum size. Don't forget " +
"Scheduler Profiling: Event log exceeded maximum size. Don't forget " +
'to call `stopLoggingProfilingEvents()`.',
);