Skip to content

Commit b05dbbf

Browse files
committed
actually fix lint
1 parent dfae0e9 commit b05dbbf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/svelte/src/ambient.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ declare namespace $state {
102102
* ```svelte
103103
* <script>
104104
* import Counter from 'external-class';
105-
*
105+
*
106106
* let counter = $state(new Counter());
107-
*
107+
*
108108
* function increment() {
109-
* counter.increment();
109+
* counter.increment();
110110
* $state.invalidate(counter);
111111
* }
112112
* </script>

packages/svelte/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2769,11 +2769,11 @@ declare namespace $state {
27692769
* ```svelte
27702770
* <script>
27712771
* import Counter from 'external-class';
2772-
*
2772+
*
27732773
* let counter = $state(new Counter());
2774-
*
2774+
*
27752775
* function increment() {
2776-
* counter.increment();
2776+
* counter.increment();
27772777
* $state.invalidate(counter);
27782778
* }
27792779
* </script>

0 commit comments

Comments
 (0)