File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
compiler-core/src/transforms Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ function getGeneratedPropsConstantType(
330
330
} else if ( value . type === NodeTypes . JS_CALL_EXPRESSION ) {
331
331
// some helper calls can be hoisted,
332
332
// such as the `normalizeProps` generated by the compiler for pre-normalize class,
333
- // in this case we need to respect the ConstantType of the helper's argments
333
+ // in this case we need to respect the ConstantType of the helper's arguments
334
334
valueType = getConstantTypeOfHelperCall ( value , context )
335
335
} else {
336
336
valueType = ConstantTypes . NOT_CONSTANT
Original file line number Diff line number Diff line change @@ -602,7 +602,7 @@ const methodsToPatch = [
602
602
const patched = new WeakSet < object > ( )
603
603
604
604
function defineReactive ( obj : any , key : string , val : any ) {
605
- // it's possible for the orignial object to be mutated after being defined
605
+ // it's possible for the original object to be mutated after being defined
606
606
// and expecting reactivity... we are covering it here because this seems to
607
607
// be a bit more common.
608
608
if ( isObject ( val ) && ! isReactive ( val ) && ! patched . has ( val ) ) {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export function initFeatureFlags() {
29
29
`which expects these compile-time feature flags to be globally injected ` +
30
30
`via the bundler config in order to get better tree-shaking in the ` +
31
31
`production bundle.\n\n` +
32
- `For more details, see http ://link.vuejs.org/feature-flags.`
32
+ `For more details, see https ://link.vuejs.org/feature-flags.`
33
33
)
34
34
}
35
35
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue" ,
3
3
"version" : " 3.2.24" ,
4
- "description" : " The progressive JavaScript framework for buiding modern web UI." ,
4
+ "description" : " The progressive JavaScript framework for building modern web UI." ,
5
5
"main" : " index.js" ,
6
6
"module" : " dist/vue.runtime.esm-bundler.js" ,
7
7
"types" : " dist/vue.d.ts" ,
You can’t perform that action at this time.
0 commit comments