Skip to content

Commit

Permalink
fix typo inteval -> interval & continutation -> continuation (#16760)
Browse files Browse the repository at this point in the history
* fix typo alterate -> alternate

* fix typo interal -> interval & continutation -> continuation
  • Loading branch information
NE-SmallTown authored and acdlite committed Sep 14, 2019
1 parent 45b6443 commit cdbfa50
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ describe('SchedulerBrowser', () => {
runtime.assertLog(['Message Event', 'B']);
});

it('adjusts frame rate by measuring inteval between rAF events', () => {
it('adjusts frame rate by measuring interval between rAF events', () => {
runtime.setHardwareFrameRate(60);

scheduleCallback(NormalPriority, () => runtime.log('Tick'));
Expand Down Expand Up @@ -371,7 +371,7 @@ describe('SchedulerBrowser', () => {
runtime.assertLog(['Message Event', 'Task']);
});

it('task with continutation', () => {
it('task with continuation', () => {
scheduleCallback(NormalPriority, () => {
runtime.log('Task');
while (!Scheduler.unstable_shouldYield()) {
Expand Down

0 comments on commit cdbfa50

Please sign in to comment.