From c8eec2fb57bdeb492153c731a6fa87074c2281a8 Mon Sep 17 00:00:00 2001 From: Navid Salehi Date: Wed, 1 Dec 2021 21:13:09 +0330 Subject: [PATCH] docs: remove redundant space before comma (#920) Co-authored-by: David Leal --- games/tic_tac_toe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games/tic_tac_toe.c b/games/tic_tac_toe.c index d8b2f421..07b7bd68 100644 --- a/games/tic_tac_toe.c +++ b/games/tic_tac_toe.c @@ -4,8 +4,8 @@ * @author [Krishna Vedala](https://github.com/kvedala) * @brief [Tic-Tac-Toe game](https://en.wikipedia.org/wiki/Tic-tac-toe) * implementation in C - * @details Tic-Tac-Toe Game,where the user can decide to play with the - * computer(single player mode) or with other user(double player mode) , the + * @details Tic-Tac-Toe Game, where the user can decide to play with the + * computer(single player mode) or with other user(double player mode), the * code as an array named 'game_table' which is the table and user needs to enter the * position inside the array(from 1-9) where he/she wants to place 'X' or 'O' on the * table.