Skip to content

Commit

Permalink
chore: fix typo in scheduler.js [ci skip] (#9425)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsn authored and yyx990803 committed Feb 5, 2019
1 parent fdc5f03 commit 2ef67f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/observer/scheduler.js
Expand Up @@ -44,7 +44,7 @@ export let currentFlushTimestamp = 0
let getNow: () => number = Date.now

// Determine what event timestamp the browser is using. Annoyingly, the
// timestamp can either be hi-res ( relative to poge load) or low-res
// timestamp can either be hi-res (relative to page load) or low-res
// (relative to UNIX epoch), so in order to compare time we have to use the
// same timestamp type when saving the flush timestamp.
if (inBrowser && getNow() > document.createEvent('Event').timeStamp) {
Expand Down

0 comments on commit 2ef67f8

Please sign in to comment.