Skip to content

Commit 55f49c5

Browse files
committed
regenerate types
1 parent aa8f414 commit 55f49c5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

documentation/docs/98-reference/.generated/compile-errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ In legacy mode, it was possible to reassign or bind to the each block argument i
392392
{/each}
393393
```
394394

395-
This turned out to be buggy and unpredictable, particularly when working with derived values (such as `array.map(...)`), and as such is forbidden in runes mode. You can achieve the same outcome by using the index instead:
395+
This turned out to be buggy and unpredictable, particularly when working with derived values (such as `array.map(...)`), and thus is forbidden in runes mode. You can achieve the same outcome by using the index instead:
396396

397397
```svelte
398398
<script>

documentation/docs/98-reference/.generated/compile-warnings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ In HTML, there's [no such thing as a self-closing tag](https://jakearchibald.com
679679
</div>
680680
```
681681

682-
Some templating languages (including Svelte) will 'fix' HTML by turning `<span />` into `<span></span>`. Others adhere to the spec. Both result in ambiguity and confusion when copy-pasting code between different contexts, and as such Svelte prompts you to resolve the ambiguity directly by having an explicit closing tag.
682+
Some templating languages (including Svelte) will 'fix' HTML by turning `<span />` into `<span></span>`. Others adhere to the spec. Both result in ambiguity and confusion when copy-pasting code between different contexts, so Svelte prompts you to resolve the ambiguity directly by having an explicit closing tag.
683683

684684
To automate this, run the dedicated migration:
685685

packages/svelte/src/ambient.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ declare namespace $derived {
229229
*
230230
* If you return a function from the effect, it will be called right before the effect is run again, or when the component is unmounted.
231231
*
232-
* Does not run during server side rendering.
232+
* Does not run during server-side rendering.
233233
*
234234
* https://svelte.dev/docs/svelte/$effect
235235
* @param fn The function to execute
@@ -248,7 +248,7 @@ declare namespace $effect {
248248
*
249249
* If you return a function from the effect, it will be called right before the effect is run again, or when the component is unmounted.
250250
*
251-
* Does not run during server side rendering.
251+
* Does not run during server-side rendering.
252252
*
253253
* https://svelte.dev/docs/svelte/$effect#$effect.pre
254254
* @param fn The function to execute

packages/svelte/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3313,7 +3313,7 @@ declare namespace $derived {
33133313
*
33143314
* If you return a function from the effect, it will be called right before the effect is run again, or when the component is unmounted.
33153315
*
3316-
* Does not run during server side rendering.
3316+
* Does not run during server-side rendering.
33173317
*
33183318
* https://svelte.dev/docs/svelte/$effect
33193319
* @param fn The function to execute
@@ -3332,7 +3332,7 @@ declare namespace $effect {
33323332
*
33333333
* If you return a function from the effect, it will be called right before the effect is run again, or when the component is unmounted.
33343334
*
3335-
* Does not run during server side rendering.
3335+
* Does not run during server-side rendering.
33363336
*
33373337
* https://svelte.dev/docs/svelte/$effect#$effect.pre
33383338
* @param fn The function to execute

0 commit comments

Comments
 (0)