From d1a2247969028803be53cf7c6f9ea146f865e65f Mon Sep 17 00:00:00 2001 From: Anastasios Chatzialexiou <16361161+tasxatzial@users.noreply.github.com> Date: Wed, 9 Oct 2024 15:39:22 +0300 Subject: [PATCH] Grammar fix in state-of-tic-tac-toe instructions --- exercises/state-of-tic-tac-toe/description.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/state-of-tic-tac-toe/description.md b/exercises/state-of-tic-tac-toe/description.md index 872a62aa53..aa45f7779c 100644 --- a/exercises/state-of-tic-tac-toe/description.md +++ b/exercises/state-of-tic-tac-toe/description.md @@ -3,7 +3,7 @@ In this exercise, you're going to implement a program that determines the state of a [tic-tac-toe][] game. (_You may also know the game as "noughts and crosses" or "Xs and Os"._) -The games is played on a 3×3 grid. +The game is played on a 3×3 grid. Players take turns to place `X`s and `O`s on the grid. The game ends when one player has won by placing three of marks in a row, column, or along a diagonal of the grid, or when the entire grid is filled up.