From 22fc24fa7e4e0d6af70c5b810c2991ffea0a465b Mon Sep 17 00:00:00 2001 From: Violet Rosenzweig Date: Fri, 28 Mar 2025 10:00:02 -0400 Subject: [PATCH] fix: typo spotted a random `]` on this page, figured it's an easy fix --- src/routes/solid-router/getting-started/config.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/solid-router/getting-started/config.mdx b/src/routes/solid-router/getting-started/config.mdx index 9cfd8b0bcd..0acdb3b0a5 100644 --- a/src/routes/solid-router/getting-started/config.mdx +++ b/src/routes/solid-router/getting-started/config.mdx @@ -23,7 +23,7 @@ render(() => {routes}, document.getElementById("app")); In the route definition object, a `path` property must be provided to define the path to match and a `component` property that specifies the component (or element) to render when the path matches. -To define multiple routes, an array of route definition objects can be passed to the ``] component: +To define multiple routes, an array of route definition objects can be passed to the `` component: ```jsx import { lazy } from "solid-js";