chore: fix comment

This commit is contained in:
Evan You 2019-09-25 07:30:14 -04:00
parent 61be769ce6
commit d6852c5669

View 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 : '')