From 2cfe56bcbbc941b0d59fc0210291b12dc4de0f31 Mon Sep 17 00:00:00 2001 From: Teevio Date: Fri, 23 Oct 2015 09:52:38 -0400 Subject: [PATCH] =?UTF-8?q?Fixing=20spelling=20error=20of=20the=20word=20?= =?UTF-8?q?=E2=80=98attribute=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/directives/public/bind.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/directives/public/bind.js b/src/directives/public/bind.js index a120d6614fa..1151d1b5cea 100644 --- a/src/directives/public/bind.js +++ b/src/directives/public/bind.js @@ -20,7 +20,7 @@ var modelProps = { 'false-value': '_falseValue' } -// check for attribtues that prohibit interpolations +// check for attributes that prohibit interpolations var disallowedInterpAttrRE = /^v-|^:|^@|^(is|transition|transition-mode|debounce|track-by|stagger|enter-stagger|leave-stagger)$/ module.exports = { @@ -60,8 +60,8 @@ module.exports = { // warn style if (attr === 'style') { _.warn( - raw + 'interpolation in "style" attribtue will cause ' + - 'the attribtue to be discarded in Internet Explorer. ' + + raw + 'interpolation in "style" attribute will cause ' + + 'the attribute to be discarded in Internet Explorer. ' + 'Use v-bind:style instead.' ) }