From 2fcfc305300af531d008c040f1bc0eee392cfc72 Mon Sep 17 00:00:00 2001 From: wingedotter5 <108061368+wingedotter5@users.noreply.github.com> Date: Sat, 10 May 2025 20:56:31 +0530 Subject: [PATCH] Fix typo (#3115) --- docs/guides/tutorial-tic-tac-toe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/tutorial-tic-tac-toe.md b/docs/guides/tutorial-tic-tac-toe.md index 98d9ea50..d74ab07c 100644 --- a/docs/guides/tutorial-tic-tac-toe.md +++ b/docs/guides/tutorial-tic-tac-toe.md @@ -1313,7 +1313,7 @@ export default function Game() { function jumpTo(nextMove) { setCurrentMove(nextMove) - setXIsNext(currentMove % 2 === 0) + setXIsNext(nextMove % 2 === 0) } return (