Skip to content

Commit 57a0933

Browse files
authored
chore: fix some typos (vuejs#5050) [ci skip]
1 parent 7e4f0a8 commit 57a0933

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/compiler-core/src/transforms/hoistStatic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ function getGeneratedPropsConstantType(
330330
} else if (value.type === NodeTypes.JS_CALL_EXPRESSION) {
331331
// some helper calls can be hoisted,
332332
// 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
334334
valueType = getConstantTypeOfHelperCall(value, context)
335335
} else {
336336
valueType = ConstantTypes.NOT_CONSTANT

packages/runtime-core/src/compat/global.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ const methodsToPatch = [
602602
const patched = new WeakSet<object>()
603603

604604
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
606606
// and expecting reactivity... we are covering it here because this seems to
607607
// be a bit more common.
608608
if (isObject(val) && !isReactive(val) && !patched.has(val)) {

packages/runtime-core/src/featureFlags.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function initFeatureFlags() {
2929
`which expects these compile-time feature flags to be globally injected ` +
3030
`via the bundler config in order to get better tree-shaking in the ` +
3131
`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.`
3333
)
3434
}
3535
}

packages/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue",
33
"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.",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
77
"types": "dist/vue.d.ts",

0 commit comments

Comments
 (0)