]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: fix typo (#11195) [ci skip]
authorTycho <jh.leong@outlook.com>
Mon, 24 Jun 2024 02:26:17 +0000 (10:26 +0800)
committerGitHub <noreply@github.com>
Mon, 24 Jun 2024 02:26:17 +0000 (10:26 +0800)
packages/runtime-core/src/component.ts

index 93b3ad9430556f60809b499c806e2d9ea77ebed0..b5faa856ecafe8066b80d5165b2e4fb8aea38acf 100644 (file)
@@ -94,7 +94,7 @@ export type Data = Record<string, unknown>
  * the usage of `InstanceType<typeof Comp>` which only works for
  * constructor-based component definition types.
  *
- * Exmaple:
+ * @example
  * ```ts
  * const MyComp = { ... }
  * declare const instance: ComponentInstance<typeof MyComp>