}
// Whitespace management for more efficient output
- // (same as v2 whitespance: 'condense')
+ // (same as v2 whitespace: 'condense')
let removedWhitespace = false
if (
mode !== TextModes.RAWTEXT &&
// handled by transformSlotOutlet
node.tagType === ElementTypes.SLOT ||
// <template v-if/v-for> should have already been replaced
- // <templte v-slot> is handled by buildSlots
+ // <template v-slot> is handled by buildSlots
(node.tagType === ElementTypes.TEMPLATE && node.props.some(isVSlot))
) {
return
} else {
// keyed / unkeyed, or manual fragments.
// for keyed & unkeyed, since they are compiler generated from v-for,
- // each child is guarunteed to be a block so the fragment will never
+ // each child is guaranteed to be a block so the fragment will never
// have dynamicChildren.
patchChildren(
n1,