Skip to content

Commit

Permalink
Spelling is fundamental (#16782)
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite committed Sep 13, 2019
1 parent 45898d0 commit 45b6443
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/scheduler/src/SchedulerProfiling.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()`.',
);

Expand Down

0 comments on commit 45b6443

Please sign in to comment.