From cbe6596b79c47366edc4ccbf8ba042bcc7f69a8a Mon Sep 17 00:00:00 2001 From: Oscar Date: Sat, 13 Jul 2019 14:38:46 +0200 Subject: [PATCH] fix small typo in comment (#2473) [skip ci] // The attribute is1 coerced -> // The attribute is coerced --- mithril.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mithril.js b/mithril.js index bf10b02b..f3d212ea 100644 --- a/mithril.js +++ b/mithril.js @@ -1685,7 +1685,7 @@ var _25 = function($window, mountRedraw00) { // Let's provide a *right* way to disable a route link, rather than // letting people screw up accessibility on accident. // - // The attribute is1 coerced so users don't get surprised over + // The attribute is coerced so users don't get surprised over // `disabled: 0` resulting in a button that's somehow routable // despite being visibly disabled. if (child0.attrs.disabled = Boolean(child0.attrs.disabled)) { @@ -1752,4 +1752,4 @@ m.vnode = Vnode m.PromisePolyfill = PromisePolyfill if (typeof module !== "undefined") module["exports"] = m else window.m = m -}()); \ No newline at end of file +}());