From fb1470c36d779323e70fcb1b2b276564f976f072 Mon Sep 17 00:00:00 2001 From: Amir Hossein Hashemi <87268103+amirhhashemi@users.noreply.github.com> Date: Mon, 30 Dec 2024 11:39:37 +0330 Subject: [PATCH] Update src/routes/solid-start/guides/data-fetching.mdx Co-authored-by: Sarah --- src/routes/solid-start/guides/data-fetching.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/solid-start/guides/data-fetching.mdx b/src/routes/solid-start/guides/data-fetching.mdx index 746a4510e..417d35ac5 100644 --- a/src/routes/solid-start/guides/data-fetching.mdx +++ b/src/routes/solid-start/guides/data-fetching.mdx @@ -131,7 +131,7 @@ export default function Page() { ## Passing parameters to queries -To create a query that accepts parameters, you can pass any number of arguments to your query function: +When creating a query that accepts parameters, you can define your query function to take any number of arguments: ```tsx {9-10} {15} {19-20} title="src/routes/posts/[id]/index.tsx" import { ErrorBoundary } from "solid-js";