From 951f8d2161693138582fd0ac7c57bde812ad0102 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Tue, 31 Aug 2021 20:23:40 -0400 Subject: Update help output styling --- src/game_loop.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/game_loop.c b/src/game_loop.c index 5f893e0..5827b09 100644 --- a/src/game_loop.c +++ b/src/game_loop.c @@ -38,12 +38,12 @@ static void prompt_player(enum player_color current_player) { static void print_help() { puts("To enter a move, enter the two row and column seperated by spaces.\n" "For example `0 0` will select the top left corner.\n\n" - "To print the board again, enter `p`\n\n" - "To drop into a guile repl enter `g`.\n\n" - "In the guile repl you can define an AI to use for the current " - "player.\n\n" + "p - Print the board again\n" + "g - Drop into a guile repl\n\n" + "In the guile repl you can define an AI to use for the current" + "player.\n" "After you define an AI for that player, it will be used for the rest " - "of the game instead of prompting for input for that user."); + "of the game instead of prompting for input for that user.\n"); } static struct move get_move(enum player_color board[8][8], -- cgit v1.2.3