From 8946c9a6f4fde955f54138442d2bc3617fa59466 Mon Sep 17 00:00:00 2001 From: Fangdun Tsai Date: Mon, 15 Jan 2024 05:27:42 +0800 Subject: [PATCH] fix(docs): links --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 782992e..732b619 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -166,7 +166,7 @@ pub async fn handle_server_fns(req: Request) -> Result { /// of one that should work much like this one. /// /// **NOTE**: If your server functions expect a context, make sure to provide it both in -/// [`handle_server_fns_with_context`] **and** in [`leptos_routes_with_context`] (or whatever +/// [`handle_server_fns_with_context`] **and** in [`leptos_routes_with_context`](LeptosRoutes#leptos_routes_with_context) (or whatever /// rendering method you are using). During SSR, server functions are called by the rendering /// method, while subsequent calls from the client are handled by the server function handler. /// The same context needs to be provided to both handlers.