File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1063,7 +1063,7 @@ function parseTextData(
1063
1063
) {
1064
1064
return rawText
1065
1065
} else {
1066
- // DATA or RCDATA containing "&"" . Entity decoding required.
1066
+ // DATA or RCDATA containing "&". Entity decoding is required.
1067
1067
return context . options . decodeEntities (
1068
1068
rawText ,
1069
1069
mode === TextModes . ATTRIBUTE_VALUE
Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ export function injectProp(
380
380
propsWithInjection = createObjectExpression ( [ prop ] )
381
381
} else if ( props . type === NodeTypes . JS_CALL_EXPRESSION ) {
382
382
// merged props... add ours
383
- // only inject key to object literal if it's the first argument so that
383
+ // only inject key to object literally if it's the first argument so that
384
384
// if doesn't override user provided keys
385
385
const first = props . arguments [ 0 ] as string | JSChildNode
386
386
if ( ! isString ( first ) && first . type === NodeTypes . JS_OBJECT_EXPRESSION ) {
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ export function compile(
72
72
// reusing core v-bind
73
73
bind : transformBind ,
74
74
on : transformOn ,
75
- // model and show has dedicated SSR handling
75
+ // model and show have dedicated SSR handling
76
76
model : ssrTransformModel ,
77
77
show : ssrTransformShow ,
78
78
// the following are ignored during SSR
Original file line number Diff line number Diff line change @@ -585,8 +585,8 @@ function _createVNode(
585
585
if ( __DEV__ && shapeFlag & ShapeFlags . STATEFUL_COMPONENT && isProxy ( type ) ) {
586
586
type = toRaw ( type )
587
587
warn (
588
- `Vue received a Component which was made a reactive object. This can ` +
589
- `lead to unnecessary performance overhead, and should be avoided by ` +
588
+ `Vue received a Component that was made a reactive object. This can ` +
589
+ `lead to unnecessary performance overhead and should be avoided by ` +
590
590
`marking the component with \`markRaw\` or using \`shallowRef\` ` +
591
591
`instead of \`ref\`.` ,
592
592
`\nComponent that was made reactive: ` ,
You can’t perform that action at this time.
0 commit comments