From 744eb704ea05a16585c3f58fcfacc94ae82bf153 Mon Sep 17 00:00:00 2001 From: black5box Date: Tue, 18 Nov 2025 18:17:35 +0800 Subject: [PATCH] docs(api/framework-conventions): fix grammar Signed-off-by: black5box --- contributors.yml | 1 + docs/api/framework-conventions/root.tsx.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/contributors.yml b/contributors.yml index f160a1d397..7a2c815294 100644 --- a/contributors.yml +++ b/contributors.yml @@ -54,6 +54,7 @@ - bhbs - bilalk711 - bjohn465 +- black5box - bmsuseluda - bobziroll - bravo-kernel diff --git a/docs/api/framework-conventions/root.tsx.md b/docs/api/framework-conventions/root.tsx.md index ab0ca32d49..5a23f32534 100644 --- a/docs/api/framework-conventions/root.tsx.md +++ b/docs/api/framework-conventions/root.tsx.md @@ -73,7 +73,7 @@ export default function App() { } ``` -If you are are not on React 19 or choosing not to use React's [``][react-link], [``][react-title], and [`<meta>`][react-meta] components, and instead relying on React Router's [`links`][react-router-links] and [`meta`][react-router-meta] exports, you need to add the following to your root route: +If you are not on React 19 or choosing not to use React's [`<link>`][react-link], [`<title>`][react-title], and [`<meta>`][react-meta] components, and instead relying on React Router's [`links`][react-router-links] and [`meta`][react-router-meta] exports, you need to add the following to your root route: ```tsx filename=app/root.tsx import { Links, Meta } from "react-router";