From 567d9ebd15635f50ec388f83efd1617f6024a750 Mon Sep 17 00:00:00 2001 From: Jeff Shen Date: Thu, 21 Jan 2016 14:53:44 -0800 Subject: [PATCH] Cleaned up comment on line 557 Fixed subject-verb agreement --- mithril.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mithril.js b/mithril.js index 53509d51..89fd7f41 100644 --- a/mithril.js +++ b/mithril.js @@ -554,7 +554,7 @@ var m = (function app(window, undefined) { if (!(attrName in cachedAttrs) || (cachedAttr !== dataAttr)) { cachedAttrs[attrName] = dataAttr; try { - //`config` isn't a real attributes, so ignore it + //`config` isn't a real attribute, so ignore it if (attrName === "config" || attrName === "key") continue; //hook event handlers to the auto-redrawing system else if (isFunction(dataAttr) && attrName.slice(0, 2) === "on") {