Assorted spelling fixes

No functional change.
This commit is contained in:
Jerry Donald
2013-12-02 18:39:26 +01:00
committed by Marco Costalba
parent f99cb3dc27
commit 500b9b0eb3
2 changed files with 9 additions and 10 deletions

View File

@@ -127,7 +127,7 @@ namespace {
||(StepAttacksBB[KING][wksq] & (psq + DELTA_N))))
result = WIN;
}
// Immediate draw if is stalemate or king captures undefended pawn
// Immediate draw if it is stalemate or king captures undefended pawn
else if ( !(StepAttacksBB[KING][bksq] & ~(StepAttacksBB[KING][wksq] | StepAttacksBB[PAWN][psq]))
|| (StepAttacksBB[KING][bksq] & psq & ~StepAttacksBB[KING][wksq]))
result = DRAW;