From 61fc89b00294788cd6ddbe695883f3be2fd2d712 Mon Sep 17 00:00:00 2001 From: "Omoshola E." Date: Thu, 9 Oct 2025 13:41:53 -0700 Subject: [PATCH] Fix grammatical error in ViewTransition documentation ## What Fixed a grammatical error in the ViewTransition component documentation. ## Changes - **Before:** ` only activates if it is placed is before any DOM node` - **After:** ` only activates if it is placed before any DOM node` ## Why The extra "is" was grammatically incorrect and made the sentence confusing for readers. This is a simple documentation fix that improves clarity without changing any technical meaning. --- src/content/reference/react/ViewTransition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/reference/react/ViewTransition.md b/src/content/reference/react/ViewTransition.md index 82b94766c96..acf59ac3821 100644 --- a/src/content/reference/react/ViewTransition.md +++ b/src/content/reference/react/ViewTransition.md @@ -2124,7 +2124,7 @@ If a `startTransition` is started from the legacy popstate event, such as during ### My `` is not activating {/*my-viewtransition-is-not-activating*/} -`` only activates if it is placed is before any DOM node: +`` only activates if it is placed before any DOM node: ```js [3, 5] function Component() {