From 4b8cc96dfa0b49ebe3a100fa3b2073553f033756 Mon Sep 17 00:00:00 2001 From: Andrew Grande Date: Thu, 20 Jul 2023 13:13:25 -0700 Subject: [PATCH] docs: typo in 16_routes.md Fixed grammar --- docs/book/src/router/16_routes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/src/router/16_routes.md b/docs/book/src/router/16_routes.md index ab618cec0c..5b5d9922dc 100644 --- a/docs/book/src/router/16_routes.md +++ b/docs/book/src/router/16_routes.md @@ -24,7 +24,7 @@ use leptos_router::*; Routing behavior is provided by the [``](https://docs.rs/leptos_router/latest/leptos_router/fn.Router.html) component. This should usually be somewhere near the root of your application, the rest of the app. -> You shouldn’t try to use multiple ``s in your app. Remember that the router drives global state: if you have multiple routers, which ones decides what to do when the URL changes? +> You shouldn’t try to use multiple ``s in your app. Remember that the router drives global state: if you have multiple routers, which one decides what to do when the URL changes? Let’s start with a simple `` component using the router: