From 329244463b2a0e09e8fac5402755ac7f15aedc95 Mon Sep 17 00:00:00 2001 From: Mira Sato <275437409+oab24413gmai@users.noreply.github.com> Date: Wed, 13 May 2026 15:50:16 +0000 Subject: [PATCH] docs: fix duplicated word in DOM server comments --- .../react-dom-bindings/src/server/ReactFizzConfigDOM.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js b/packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js index 691e49e563fd..21df7ead98ca 100644 --- a/packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js +++ b/packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js @@ -3686,7 +3686,7 @@ function pushStartHead( ); } else { // This is deep and is likely just an error. we emit it inline though. - // Validation should warn that this tag is the the wrong spot. + // Validation should warn that this tag is the wrong spot. return pushStartGenericElement(target, props, 'head', formatContext); } } @@ -3720,7 +3720,7 @@ function pushStartBody( ); } else { // This is deep and is likely just an error. we emit it inline though. - // Validation should warn that this tag is the the wrong spot. + // Validation should warn that this tag is the wrong spot. return pushStartGenericElement(target, props, 'body', formatContext); } } @@ -3754,7 +3754,7 @@ function pushStartHtml( ); } else { // This is deep and is likely just an error. we emit it inline though. - // Validation should warn that this tag is the the wrong spot. + // Validation should warn that this tag is the wrong spot. return pushStartGenericElement(target, props, 'html', formatContext); } }