]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
fix(compiler-sfc): typo in experimental feature warnings (#8513)
authorCédric Exbrayat <cexbrayat@users.noreply.github.com>
Sat, 10 Jun 2023 09:17:21 +0000 (11:17 +0200)
committerGitHub <noreply@github.com>
Sat, 10 Jun 2023 09:17:21 +0000 (17:17 +0800)
packages/compiler-sfc/src/script/defineModel.ts
packages/compiler-sfc/src/script/definePropsDestructure.ts

index 2e7800aba48359d47133878cb7f1b1aa6f26acfe..987e67fc1471369eecd95c55f12df02b1f177b30 100644 (file)
@@ -30,7 +30,7 @@ export function processDefineModel(
 
   warnOnce(
     `This project is using defineModel(), which is an experimental ` +
-      ` feature. It may receive breaking changes or be removed in the future, so ` +
+      `feature. It may receive breaking changes or be removed in the future, so ` +
       `use at your own risk.\n` +
       `To stay updated, follow the RFC at https://github.com/vuejs/rfcs/discussions/503.`
   )
index 1584913855abd3c665bbf8167935aa5360994453..a81b4a5c5cbec61b4ed9e8b6b7f878494c33e3c4 100644 (file)
@@ -34,7 +34,7 @@ export function processPropsDestructure(
 
   warnOnce(
     `This project is using reactive props destructure, which is an experimental ` +
-      ` feature. It may receive breaking changes or be removed in the future, so ` +
+      `feature. It may receive breaking changes or be removed in the future, so ` +
       `use at your own risk.\n` +
       `To stay updated, follow the RFC at https://github.com/vuejs/rfcs/discussions/502.`
   )