From b920ec22fa34e0e39844ceca22602b01acfe4e2b Mon Sep 17 00:00:00 2001 From: Iisakki Rotko Date: Mon, 14 Oct 2024 17:02:07 +0200 Subject: [PATCH] chore: fix typo in routing docs --- .../advanced/content/20-understanding/40-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solara/website/pages/documentation/advanced/content/20-understanding/40-routing.md b/solara/website/pages/documentation/advanced/content/20-understanding/40-routing.md index 9859ca142..0611183a5 100644 --- a/solara/website/pages/documentation/advanced/content/20-understanding/40-routing.md +++ b/solara/website/pages/documentation/advanced/content/20-understanding/40-routing.md @@ -196,7 +196,7 @@ Note that all routes are relative, since a component does not know if it is embe Therefore you should never use the `route.path` for navigation since the route object has no knowledge of the full url -(e.g. `/docs/basics/ipywigets`) but only knows its small piece of the pathname (e.g. `ipywidgets`) +(e.g. `/docs/basics/ipywidgets`) but only knows its small piece of the pathname (e.g. `ipywidgets`) Using [`resolve_path`](/documentation/api/routing/resolve_path) we can request the full url for navigation.