]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore(compiler-core): fix typo in errors.ts and options.ts (#4650) [ci skip]
authorZiwen Mei <67939848+Rudeus3Greyrat@users.noreply.github.com>
Wed, 22 Sep 2021 14:12:33 +0000 (22:12 +0800)
committerGitHub <noreply@github.com>
Wed, 22 Sep 2021 14:12:33 +0000 (10:12 -0400)
packages/compiler-core/src/errors.ts
packages/compiler-core/src/options.ts

index a6f2f3f8566456928eb6c5dac91e2f9b10891686..f0af09dda31c74b738ef2dbc74eee6b3822ad4a0 100644 (file)
@@ -177,6 +177,6 @@ export const errorMessages: Record<ErrorCodes, string> = {
   [ErrorCodes.X_CACHE_HANDLER_NOT_SUPPORTED]: `"cacheHandlers" option is only supported when the "prefixIdentifiers" option is enabled.`,
   [ErrorCodes.X_SCOPE_ID_NOT_SUPPORTED]: `"scopeId" option is only supported in module mode.`,
 
-  // just to fullfill types
+  // just to fulfill types
   [ErrorCodes.__EXTEND_POINT__]: ``
 }
index 07b87cde37da7f62a71d86325971899ea2551f5f..9faea57d71330fc11410c20825f0062a67bd6988 100644 (file)
@@ -130,7 +130,7 @@ interface SharedTransformCodegenOptions {
    * When compiler generates code for SSR's fallback branch, we need to set it to false:
    *  - context.ssr = false
    *
-   * see `subTransform` in `ssrTransformCompoent.ts`
+   * see `subTransform` in `ssrTransformComponent.ts`
    */
   ssr?: boolean
   /**