From 518812eeb82a524dd264be79ca0573ce39cde945 Mon Sep 17 00:00:00 2001 From: Heaven Date: Wed, 19 Sep 2018 20:14:32 +0800 Subject: [PATCH] Clarify comment (#13684) * fix comment typo * Update Scheduler.js --- packages/scheduler/src/Scheduler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/scheduler/src/Scheduler.js b/packages/scheduler/src/Scheduler.js index c1ded2effb..07bade1aee 100644 --- a/packages/scheduler/src/Scheduler.js +++ b/packages/scheduler/src/Scheduler.js @@ -394,7 +394,7 @@ if (typeof window === 'undefined') { ) { if (nextFrameTime < 8) { // Defensive coding. We don't support higher frame rates than 120hz. - // If we get lower than that, it is probably a bug. + // If the calculated frame time gets lower than 8, it is probably a bug. nextFrameTime = 8; } // If one frame goes long, then the next one can be short to catch up.