diff --git a/src/runtime/internal/dev.ts b/src/runtime/internal/dev.ts index afc8f261bf..472d6bd431 100644 --- a/src/runtime/internal/dev.ts +++ b/src/runtime/internal/dev.ts @@ -263,31 +263,31 @@ export class SvelteComponentTyped< /** * Convenience type to get the type of a Svelte component. Useful for example in combination with - * dynamic components and ``. + * dynamic components using ``. * * Example: * ```html * * - * - * + * + * * ``` */ export type ComponentType> = new (p: ComponentConstructorOptions ? Props : any>) => Component; /** - * Convenience type to get the properties the given component expects. Example: + * Convenience type to get the props the given component expects. Example: * ```html *