]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: fix comment
authorEvan You <yyx990803@gmail.com>
Wed, 25 Sep 2019 11:30:14 +0000 (07:30 -0400)
committerEvan You <yyx990803@gmail.com>
Wed, 25 Sep 2019 11:30:14 +0000 (07:30 -0400)
packages/compiler-core/src/transforms/vBindClass.ts

index e785858d31e5b0978d75c7e5d3048749a327a201..d5392cfb15ba443d3dc2985109ff0e918ccabd38 100644 (file)
@@ -1,5 +1,5 @@
 // Optimizations
-// - b -> normalize(b)
+// - b -> b (use runtime normalization)
 // - ['foo', b] -> 'foo' + normalize(b)
 // - { a, b: c } -> (a ? a : '') + (b ? c : '')
 // - ['a', b, { c }] -> 'a' + normalize(b) + (c ? c : '')