From c1370787a95390eb1549efc0b7bfd7b94be1fcaf Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 24 Aug 2017 14:31:31 +0200 Subject: [PATCH] Fix a comment --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 3ed7991..e162a0f 100644 --- a/src/main.c +++ b/src/main.c @@ -109,7 +109,7 @@ int main() { /* here are all the end of the game conditions */ if (is_board_full(pawns)) { print_board(board_center_y, board_center_x); - /* print the updated pawns before exiting */ + /* print the updated pawns array before exiting */ print_pawns(board_center_y, board_center_x, pawns); unsigned int winner = eval_winner(nb_white, nb_black); if (winner != 0) { -- 2.34.1