diff --git a/src/utils/observe-dom.js b/src/utils/observe-dom.js index 1d131db0c61..8212fcd9be8 100755 --- a/src/utils/observe-dom.js +++ b/src/utils/observe-dom.js @@ -22,7 +22,7 @@ export default function observeDOM (el, callback, opts) { let obs = null - /* istanbul ignore next: dificult to test in JSDOM */ + /* istanbul ignore next: difficult to test in JSDOM */ if (MutationObserver) { // Define a new observer obs = new MutationObserver(mutations => {