From e655368e20bee74aa7f5f47dd9b85d734e226f2f Mon Sep 17 00:00:00 2001 From: klequis Date: Fri, 16 May 2025 10:47:00 -0700 Subject: [PATCH] Update use-server.mdx This is a rewording of a sentence. - One change could be preference - The word 'it' seems unintentional - I would choose 'will' over 'would'. --- src/routes/solid-start/reference/server/use-server.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/solid-start/reference/server/use-server.mdx b/src/routes/solid-start/reference/server/use-server.mdx index 509e4b5ea..692f1290c 100644 --- a/src/routes/solid-start/reference/server/use-server.mdx +++ b/src/routes/solid-start/reference/server/use-server.mdx @@ -40,7 +40,7 @@ const logHello = async (message: string) => { logHello("Hello"); ``` -In both of these examples, the `logHello` function, it would only show in the server console regardless of whether rendering was on the server or in the browser. +In both examples, the `logHello` function will only show in the server console, regardless of whether rendering was on the server or in the browser. ## Usage with Data APIs