From f668dffcb335c14534cca7e7cd4d75d186ec87ea Mon Sep 17 00:00:00 2001 From: anr-m Date: Tue, 23 Feb 2021 21:18:43 +0600 Subject: [PATCH] fix subject of rust/tic_tac_toe --- subjects/tic_tac_toe/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/tic_tac_toe/README.md b/subjects/tic_tac_toe/README.md index 5afc7f92..9d82475a 100644 --- a/subjects/tic_tac_toe/README.md +++ b/subjects/tic_tac_toe/README.md @@ -11,7 +11,7 @@ Create the following functions: - It should return a String `player O won` or `player X won` or `Tie`. - `diagonals` which will receive: - a player and a table. - - It should return a boolean, this must return `true` if all the diagonals are completed by the player. + - It should return a boolean, this must return `true` if one of the diagonals are completed by the player. - `horizontal` which will receive: - a player and a table. - It should return a boolean, this must return `true` if one of the horizontal lines are completed by the player.