From 179b4fef0f6385a9ae3b35a8a719b0847a08f687 Mon Sep 17 00:00:00 2001 From: chicago4kbike Date: Wed, 11 Mar 2026 10:40:28 -0500 Subject: [PATCH] Update dynamic_routing.md minor typo? --- docs/pages/dynamic_routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/dynamic_routing.md b/docs/pages/dynamic_routing.md index 72e555b62c..5a943fa5d2 100644 --- a/docs/pages/dynamic_routing.md +++ b/docs/pages/dynamic_routing.md @@ -33,7 +33,7 @@ app = rx.App() The [pid] part in the route is a dynamic segment, meaning it can match any value provided in the URL. For instance, `/post/5`, `/post/10`, or `/post/abc` would all match this route. -If a user navigates to `/post/5`, `State.post_id` will return `5`, and the page will display `5` as the heading. If the URL is `/post/xyz`, it will display `xyz`. If the URL is `/post/` without any additional parameter, it will display `""`. +If a user navigates to `/post/5`, `State.pid` will return `5`, and the page will display `5` as the heading. If the URL is `/post/xyz`, it will display `xyz`. If the URL is `/post/` without any additional parameter, it will display `""`. ### Adding Dynamic Routes