]> git.sesse.net Git - stockfish/blobdiff - src/uci.cpp
Fix startpos_ply_counter() regression
[stockfish] / src / uci.cpp
index 813c40f7db08a1774363a07a66564e20a14aee66..4d68c86a04f3263216bfd764f6c4e3e535280e55 100644 (file)
@@ -39,7 +39,7 @@ namespace {
 
   // Keep track of position keys along the setup moves (from start position to the
   // position just before to start searching). This is needed by draw detection
-  // where, due to 50 moves rule, we need to ckeck at most 100 plies back.
+  // where, due to 50 moves rule, we need to check at most 100 plies back.
   StateInfo StateRingBuf[102], *SetupState = StateRingBuf;
 
   // UCIParser is a class for parsing UCI input. The class