Skip to content

Commit b64fb09

Browse files
committed
node scripts/process-messages
1 parent 8ebcd91 commit b64fb09

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ To resolve this, ensure you're comparing values where both values were created w
222222
### state_return_not_proxyable
223223
224224
```
225-
The argument passed to a `$state` in a return statement must be a plain object or array. Otherwise, the `$state` call will have no effect
225+
The argument passed to a `$state` call in a return statement must be a plain object or array. Otherwise, the `$state` call will have no effect
226226
```
227227
228228
### transition_slide_display

packages/svelte/src/internal/client/warnings.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,11 @@ export function state_proxy_equality_mismatch(operator) {
171171
}
172172

173173
/**
174-
* The argument passed to a `$state` in a return statement must be a plain object or array. Otherwise, the `$state` call will have no effect
174+
* The argument passed to a `$state` call in a return statement must be a plain object or array. Otherwise, the `$state` call will have no effect
175175
*/
176176
export function state_return_not_proxyable() {
177177
if (DEV) {
178-
console.warn(`%c[svelte] state_return_not_proxyable\n%cThe argument passed to a \`$state\` in a return statement must be a plain object or array. Otherwise, the \`$state\` call will have no effect\nhttps://svelte.dev/e/state_return_not_proxyable`, bold, normal);
178+
console.warn(`%c[svelte] state_return_not_proxyable\n%cThe argument passed to a \`$state\` call in a return statement must be a plain object or array. Otherwise, the \`$state\` call will have no effect\nhttps://svelte.dev/e/state_return_not_proxyable`, bold, normal);
179179
} else {
180180
console.warn(`https://svelte.dev/e/state_return_not_proxyable`);
181181
}

0 commit comments

Comments
 (0)