docs: remove redundant space before comma (#920)

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Navid Salehi 2021-12-01 21:13:09 +03:30 committed by GitHub
parent be9daa2b60
commit c8eec2fb57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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.