Skip to content

Commit aa4f3f0

Browse files
apostrophes fixed
1 parent 6f298eb commit aa4f3f0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/app/tictactoe/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@ export default function TicTacToe() {
353353

354354
<div className="mt-4 text-center text-sm sm:text-base">
355355
{gameWinner === 0 ? (
356-
<p>{currentTurn === myTacNumber ? "Your turn!" : "Opponent&#39;s turn"}</p>
356+
<p>{currentTurn === myTacNumber ? "Your turn!" : "Opponent's turn"}</p>
357357
) : gameWinner === -1 ? (
358358
<div>
359-
<p className="font-bold text-xl sm:text-2xl mb-2">Cat&#39;s game! 🐱 It&#39;s a tie!</p>
359+
<p className="font-bold text-xl sm:text-2xl mb-2">Cat's game! 🐱 It's a tie!</p>
360360
{gameEnded && (
361361
<p className="text-xs sm:text-sm text-gray-600 mt-2">
362362
Redirecting to homepage in {redirectCountdown} second{redirectCountdown !== 1 ? "s" : ""}...

0 commit comments

Comments
 (0)