aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/movecheck.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2024-04-02 02:54:43 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2024-04-02 02:54:43 +0200
commit2058736ce309158d6a4b79c80984b695340a586c (patch)
tree51a1c3bc492809d6863b499f59019f80723dca86 /FICS/movecheck.c
parent09609a5bca118a1d46d3cb3f6104eefc161e64f8 (diff)
'take back' -> 'takeback'
Diffstat (limited to 'FICS/movecheck.c')
-rw-r--r--FICS/movecheck.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/movecheck.c b/FICS/movecheck.c
index f944a5c..872814a 100644
--- a/FICS/movecheck.c
+++ b/FICS/movecheck.c
@@ -1482,7 +1482,7 @@ clean_up_doit(int g, int mode, game_state_t *gs, move_t *m)
}
/*
- * Take back of last move is done already. It's time to update
+ * takeback of last move is done already. It's time to update
* enpassant array...
*/
update_enpassant_array(g, mode, gs);
@@ -1516,7 +1516,7 @@ backup_move(int g, int mode)
}
/*
- * When take back a _first_ move of rook, the ??rmoved
+ * When takeback a _first_ move of rook, the ??rmoved
* variable must be cleared. To check if the move is first we
* should the scan move list.
*/
@@ -1532,7 +1532,7 @@ backup_move(int g, int mode)
gs->board[5][m->fromRank] = NOPIECE;
/*
- * If take back a castling, the appropriates
+ * If takeback a castling, the appropriates
* ??moved variables must be cleared.
*/
if (m->color == WHITE) {
@@ -1552,7 +1552,7 @@ backup_move(int g, int mode)
gs->board[3][m->fromRank] = NOPIECE;
/*
- * If take back a castling, the appropriate
+ * If takeback a castling, the appropriate
* ??moved variables must be cleared.
*/
if (m->color == WHITE) {
@@ -1567,7 +1567,7 @@ backup_move(int g, int mode)
}
/*
- * When take back a _first_ move of king (not the
+ * When takeback a _first_ move of king (not the
* castling), the ?kmoved variable must be cleared. To
* check if the move is first we should scan the move
* list.