diff --git a/packages/svelte/src/ambient.d.ts b/packages/svelte/src/ambient.d.ts index 88879394ed..8a20a884ff 100644 --- a/packages/svelte/src/ambient.d.ts +++ b/packages/svelte/src/ambient.d.ts @@ -47,7 +47,7 @@ declare namespace $state { | BigInt64Array | BigUint64Array; - /** The things that `structuredClone` can handle — https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm */ + /** The things that `structuredClone` can handle — https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm */ export type Cloneable = | ArrayBuffer | DataView @@ -358,7 +358,7 @@ declare function $props(): any; declare function $bindable(fallback?: T): T; /** - * Inspects one or more values whenever they, or the properties they contain, change. Example: + * Inspects one or more values whenever they, or the properties they contain, change. Example: * * ```ts * $inspect(someValue, someOtherValue)