From 48c69d3f315080de3d5ce71574af46bd2ff3afcc Mon Sep 17 00:00:00 2001 From: Daksh Dhami Date: Sun, 28 Jun 2026 22:06:40 +0530 Subject: [PATCH 1/2] fix: correct duplicate v19.2.1 version entry to v19.2.2 --- src/content/versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/versions.md b/src/content/versions.md index b48dc364ccd..16530a5ea26 100644 --- a/src/content/versions.md +++ b/src/content/versions.md @@ -54,7 +54,7 @@ For versions older than React 15, see [15.react.dev](https://15.react.dev). - [React 19 Deep Dive: Coordinating HTML](https://www.youtube.com/watch?v=IBBN-s77YSI) **Releases** -- [v19.2.1 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1922-dec-11-2025) +- [v19.2.2 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1922-dec-11-2025) - [v19.2.1 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1921-dec-3-2025) - [v19.2.0 (October, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1920-october-1st-2025) - [v19.1.3 (December, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1913-dec-11-2025) From dbbb04213444ce7bf9a97281b3d67fb24a667689 Mon Sep 17 00:00:00 2001 From: Daksh Dhami Date: Sun, 28 Jun 2026 22:07:22 +0530 Subject: [PATCH 2/2] fix: correct parameter vs argument terminology in tutorial Per #8375, a function definition receives a parameter, not an argument. The value passed during a function call is an argument. - 'Add an argument i to the handleClick function' + 'Add a parameter i to the handleClick function' --- src/content/learn/tutorial-tic-tac-toe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/tutorial-tic-tac-toe.md b/src/content/learn/tutorial-tic-tac-toe.md index d09d484844d..623ecdd4e07 100644 --- a/src/content/learn/tutorial-tic-tac-toe.md +++ b/src/content/learn/tutorial-tic-tac-toe.md @@ -1137,7 +1137,7 @@ JavaScript supports [closures](https://developer.mozilla.org/en-US/docs/Web/Java -Now you can add X's to the board... but only to the upper left square. Your `handleClick` function is hardcoded to update the index for the upper left square (`0`). Let's update `handleClick` to be able to update any square. Add an argument `i` to the `handleClick` function that takes the index of the square to update: +Now you can add X's to the board... but only to the upper left square. Your `handleClick` function is hardcoded to update the index for the upper left square (`0`). Let's update `handleClick` to be able to update any square. Add a parameter `i` to the `handleClick` function that takes the index of the square to update: ```js {4,6} export default function Board() {