Skip to content

Commit

Permalink
callUpdateHooks --> callUpdatedHooks (vuejs#5734)
Browse files Browse the repository at this point in the history
  • Loading branch information
javoski authored and yyx990803 committed May 29, 2017
1 parent 0cc0b07 commit e274c96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/observer/scheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function flushSchedulerQueue () {

// call component updated and activated hooks
callActivatedHooks(activatedQueue)
callUpdateHooks(updatedQueue)
callUpdatedHooks(updatedQueue)

// devtool hook
/* istanbul ignore if */
Expand All @@ -90,7 +90,7 @@ function flushSchedulerQueue () {
}
}

function callUpdateHooks (queue) {
function callUpdatedHooks (queue) {
let i = queue.length
while (i--) {
const watcher = queue[i]
Expand Down

0 comments on commit e274c96

Please sign in to comment.