diff --git a/source/api/global-api.md b/source/api/global-api.md index 66741d05c8..079241e52e 100644 --- a/source/api/global-api.md +++ b/source/api/global-api.md @@ -153,7 +153,7 @@ Will result in: - **callback** `Function` -Vue.js batches view updates and executes them all asynchronously. It uses `requestAnimationFrame` if available and falls back to `setTimeout(fn, 0)`. This method calls the callback after the next view update, which can be useful when you want to wait until the view has been updated. +Vue.js batches view updates and executes them all asynchronously. It uses `MutationObserver` if available and falls back to `setTimeout(fn, 0)`. This method calls the callback after the next view update, which can be useful when you want to wait until the view has been updated. ### Vue.use( plugin, [args...] ) @@ -164,4 +164,4 @@ Mount a Vue.js plugin. If the plugin is an Object, it must have an `install` met ### Vue.util -Exposes the internal `util` module, which contains a number of utility methods. This is intended for advanced plugin/directive authoring, so you will need to look at the source code to see what's available. \ No newline at end of file +Exposes the internal `util` module, which contains a number of utility methods. This is intended for advanced plugin/directive authoring, so you will need to look at the source code to see what's available.