From 9c9d0f413a0dcaab8386d56bf8fa15a72cb1b277 Mon Sep 17 00:00:00 2001 From: pierluigigiancola Date: Sun, 12 Jan 2025 02:25:20 +0100 Subject: [PATCH] docs(router): missing character in code-splitting guide (#3143) --- docs/framework/react/guide/code-based-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/framework/react/guide/code-based-routing.md b/docs/framework/react/guide/code-based-routing.md index c1e9a628e9..3099d9dfd8 100644 --- a/docs/framework/react/guide/code-based-routing.md +++ b/docs/framework/react/guide/code-based-routing.md @@ -332,7 +332,7 @@ Building non-nested routes in code-based routing does not require using a traili - `/posts` - `$postId` -To do this we need to build a separate route for the post editor an include the entire path in the `path` option from the root of where we want the route to be nested (in this case, the root): +To do this we need to build a separate route for the post editor and include the entire path in the `path` option from the root of where we want the route to be nested (in this case, the root): ```tsx // The posts editor route is nested under the root route