Fix twelve-year-old misspelling

This commit is contained in:
Murilo Pereira 2023-03-16 15:41:42 +01:00
parent 525a00e6e2
commit ef83b74a3c

View File

@ -132,10 +132,10 @@ int main(int argc, char *argv[]) {
void draw_greeting() {
mvprintw(8, 26, "Welcome to tty-solitaire.");
mvprintw(10, 21, "Move with the arrow keys or <hjkl>.");
mvprintw(11, 18, "Use the space bar to select and place cards.");
mvprintw(12, 13, "After selecting a card you can use <m> to select more");
mvprintw(13, 13, "and <n> to select less. Press <Shift+M> to select all.");
mvprintw(15, 19, "Press the space bar to play or q to quit.");
mvprintw(12, 18, "Use the space bar to select and place cards.");
mvprintw(14, 13, "After selecting a card you can use <m> to select more");
mvprintw(15, 12, "and <n> to select fewer. Press <Shift+M> to select all.");
mvprintw(17, 19, "Press the space bar to play or q to quit.");
}
void usage(const char *program_name) {