Преглед изворни кода

remove extra paren in warning

Evan You пре 9 година
родитељ
комит
72a0eb3a22
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/core/util/debug.js

+ 1 - 1
src/core/util/debug.js

@@ -26,7 +26,7 @@ if (process.env.NODE_ENV !== 'production') {
 
   const formatLocation = str => {
     if (str === 'anonymous component') {
-      str += ` - use the "name" option for better debugging messages.)`
+      str += ` - use the "name" option for better debugging messages.`
     }
     return `(found in ${str})`
   }