]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Improve some comments
[stockfish] / src / search.cpp
index 96b29d1e8ed28e0d04b9236a4d99b548becb2af2..457580316694f238e42eb4b4763039dbbf1cef45 100644 (file)
@@ -745,8 +745,8 @@ namespace {
     }
 
     // Set up the improving flag, which is true if current static evaluation is
-    // bigger than the previous static evaluation at our turn (if we were in 
-    // check at our previous move we look at static evaluaion at move prior to it
+    // bigger than the previous static evaluation at our turn (if we were in
+    // check at our previous move we look at static evaluation at move prior to it
     // and if we were in check at move prior to it flag is set to true) and is
     // false otherwise. The improving flag is used in various pruning heuristics.
     improving =   (ss-2)->staticEval != VALUE_NONE ? ss->staticEval > (ss-2)->staticEval