From fdaf310ba57d02a9e51ef21920ba0c3cb0c2ce16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Predrag=20Stojadinovi=C4=87?= Date: Tue, 20 Oct 2020 12:16:57 +0200 Subject: [PATCH] typo attributres -> attributes --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 3a84ab8..4307afe 100644 --- a/Readme.md +++ b/Readme.md @@ -70,7 +70,7 @@ var options = { observers: { childList: true, // listen to div's child elements additions or removals, default: true subtree: false, // don't listen to div's descendants mutations, default: true - attributres: true // also listen to div's attributes updates, default: false + attributes: true // also listen to div's attributes updates, default: false } } var mutant = new Mutant(div, layout, options);