Skip to content

Commit dbce470

Browse files
committed
docs: fix grammar and typos in multiple markdown files
- Corrected possessive "it's own" → "its own" in sunsetting-create-react-app.md and react-labs-view-transitions-activity-and-more.md (11 occurrences) - Fixed typo "inital mount" → "initial mount" in StrictMode.md - All changes improve clarity and readability without affecting code
1 parent ae33f40 commit dbce470

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/content/blog/2025/02/14/sunsetting-create-react-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ import {RouterProvider, createBrowserRouter} from 'react-router';
135135
import Home from './Home';
136136
import Dashboard from './Dashboard';
137137

138-
// ✅ Each route has it's own URL
138+
// ✅ Each route has its own URL
139139
const router = createBrowserRouter([
140140
{path: '/', element: <Home />},
141141
{path: '/dashboard', element: <Dashboard />}

src/content/blog/2025/04/23/react-labs-view-transitions-activity-and-more.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1577,7 +1577,7 @@ export default function Page({ heading, children }) {
15771577
</div>
15781578
</div>
15791579
{/* Opt-out of ViewTransition for the content. */}
1580-
{/* Content can define it's own ViewTransition. */}
1580+
{/* Content can define its own ViewTransition. */}
15811581
<ViewTransition default="none">
15821582
<div className="bottom">
15831583
<div className="content">{children}</div>
@@ -2791,7 +2791,7 @@ export default function Page({ heading, children }) {
27912791
</div>
27922792
</div>
27932793
{/* Opt-out of ViewTransition for the content. */}
2794-
{/* Content can define it's own ViewTransition. */}
2794+
{/* Content can define its own ViewTransition. */}
27952795
<ViewTransition default="none">
27962796
<div className="bottom">
27972797
<div className="content">{children}</div>
@@ -3985,7 +3985,7 @@ export default function Page({ heading, children }) {
39853985
</div>
39863986
</div>
39873987
{/* Opt-out of ViewTransition for the content. */}
3988-
{/* Content can define it's own ViewTransition. */}
3988+
{/* Content can define its own ViewTransition. */}
39893989
<ViewTransition default="none">
39903990
<div className="bottom">
39913991
<div className="content">{children}</div>
@@ -5247,7 +5247,7 @@ export default function Page({ heading, children }) {
52475247
</div>
52485248
</div>
52495249
{/* Opt-out of ViewTransition for the content. */}
5250-
{/* Content can define it's own ViewTransition. */}
5250+
{/* Content can define its own ViewTransition. */}
52515251
<ViewTransition default="none">
52525252
<div className="bottom">
52535253
<div className="content">{children}</div>
@@ -6519,7 +6519,7 @@ export default function Page({ heading, children }) {
65196519
</div>
65206520
</div>
65216521
{/* Opt-out of ViewTransition for the content. */}
6522-
{/* Content can define it's own ViewTransition. */}
6522+
{/* Content can define its own ViewTransition. */}
65236523
<ViewTransition default="none">
65246524
<div className="bottom">
65256525
<div className="content">{children}</div>
@@ -7840,7 +7840,7 @@ export default function Page({ heading, children }) {
78407840
</div>
78417841
</div>
78427842
{/* Opt-out of ViewTransition for the content. */}
7843-
{/* Content can define it's own ViewTransition. */}
7843+
{/* Content can define its own ViewTransition. */}
78447844
<ViewTransition default="none">
78457845
<div className="bottom">
78467846
<div className="content">{children}</div>
@@ -9167,7 +9167,7 @@ export default function Page({ heading, children }) {
91679167
</div>
91689168
</div>
91699169
{/* Opt-out of ViewTransition for the content. */}
9170-
{/* Content can define it's own ViewTransition. */}
9170+
{/* Content can define its own ViewTransition. */}
91719171
<ViewTransition default="none">
91729172
<div className="bottom">
91739173
<div className="content">{children}</div>
@@ -10482,7 +10482,7 @@ export default function Page({ heading, children }) {
1048210482
</div>
1048310483
</div>
1048410484
{/* Opt-out of ViewTransition for the content. */}
10485-
{/* Content can define it's own ViewTransition. */}
10485+
{/* Content can define its own ViewTransition. */}
1048610486
<ViewTransition default="none">
1048710487
<div className="bottom">
1048810488
<div className="content">{children}</div>
@@ -11853,7 +11853,7 @@ export default function Page({ heading, children }) {
1185311853
</div>
1185411854
</div>
1185511855
{/* Opt-out of ViewTransition for the content. */}
11856-
{/* Content can define it's own ViewTransition. */}
11856+
{/* Content can define its own ViewTransition. */}
1185711857
<ViewTransition default="none">
1185811858
<div className="bottom">
1185911859
<div className="content">{children}</div>
@@ -13191,7 +13191,7 @@ export default function Page({ heading, children }) {
1319113191
</div>
1319213192
</div>
1319313193
{/* Opt-out of ViewTransition for the content. */}
13194-
{/* Content can define it's own ViewTransition. */}
13194+
{/* Content can define its own ViewTransition. */}
1319513195
<ViewTransition default="none">
1319613196
<div className="bottom">
1319713197
<div className="content">{children}</div>

src/content/reference/react/StrictMode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ li {
12261226
12271227
</Sandpack>
12281228
1229-
Now on inital mount in StrictMode, the ref callbacks are all setup, cleaned up, and setup again:
1229+
Now on initial mount in StrictMode, the ref callbacks are all setup, cleaned up, and setup again:
12301230
12311231
```
12321232
...

0 commit comments

Comments
 (0)