From 51864f6f58597c3ba6f9007fd961a32b1e2a9a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=96zenir?= <101597537+ahm3tozenir@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:27:33 +0300 Subject: [PATCH] (fix): mismatch href bug (#7368) "use-server" docs Server Functions href fixed. --- src/content/reference/rsc/use-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/reference/rsc/use-server.md b/src/content/reference/rsc/use-server.md index ed09ee4212e..4d6fb46397a 100644 --- a/src/content/reference/rsc/use-server.md +++ b/src/content/reference/rsc/use-server.md @@ -24,7 +24,7 @@ titleForTitleTag: "'use server' directive" ### `'use server'` {/*use-server*/} -Add `'use server'` at the top of an async function body to mark the function as callable by the client. We call these functions [_Server Functions_]((/reference/rsc/server-functions)). +Add `'use server'` at the top of an async function body to mark the function as callable by the client. We call these functions [_Server Functions_](/reference/rsc/server-functions). ```js {2} async function addToCart(data) {