From ad293b6c8d99756149fef3e2ec16683410bfbca7 Mon Sep 17 00:00:00 2001 From: Aori Nevo Date: Thu, 18 Oct 2018 10:52:38 -0400 Subject: [PATCH] Update observe-dom.js --- src/utils/observe-dom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 => {