From b33147d5aa2b0e1b2f5d774f3508db3fdc652952 Mon Sep 17 00:00:00 2001 From: Erlang Parasu Date: Sat, 4 Oct 2025 21:25:35 +0800 Subject: [PATCH] fix link to start-actix template just update link --- src/server/26_extractors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/26_extractors.md b/src/server/26_extractors.md index 3fb2f4a..4949c33 100644 --- a/src/server/26_extractors.md +++ b/src/server/26_extractors.md @@ -8,7 +8,7 @@ We call Leptos a “full-stack” framework, but “full-stack” is always a mi Instead, Leptos provides integrations for the two most popular Rust web server frameworks, Actix Web ([`leptos_actix`](https://docs.rs/leptos_actix/latest/leptos_actix/)) and Axum ([`leptos_axum`](https://docs.rs/leptos_axum/latest/leptos_axum/)). We’ve built integrations with each server’s router so that you can simply plug your Leptos app into an existing server with `.leptos_routes()`, and easily handle server function calls. -> If you haven’t seen our [Actix](https://github.com/leptos-rs/start) and [Axum](https://github.com/leptos-rs/start-axum) templates, now’s a good time to check them out. +> If you haven’t seen our [Actix](https://github.com/leptos-rs/start-actix) and [Axum](https://github.com/leptos-rs/start-axum) templates, now’s a good time to check them out. ## Using Extractors