]> git.sesse.net Git - stockfish/blobdiff - src/syzygy/tbprobe.h
Fix typos in comments, adjust readme
[stockfish] / src / syzygy / tbprobe.h
index cefd39ce8de3ee775fe4e01eb94965ff37c0201f..cf61b7675909bbb06957d5a93aa46d578cc14275 100644 (file)
@@ -23,7 +23,7 @@
 
 #include "../search.h"
 
 
 #include "../search.h"
 
-namespace Tablebases {
+namespace Stockfish::Tablebases {
 
 enum WDLScore {
     WDLLoss        = -2, // Loss
 
 enum WDLScore {
     WDLLoss        = -2, // Loss
@@ -38,7 +38,7 @@ enum WDLScore {
 // Possible states after a probing operation
 enum ProbeState {
     FAIL              =  0, // Probe failed (missing file table)
 // Possible states after a probing operation
 enum ProbeState {
     FAIL              =  0, // Probe failed (missing file table)
-    OK                =  1, // Probe succesful
+    OK                =  1, // Probe successful
     CHANGE_STM        = -1, // DTZ should check the other side
     ZEROING_BEST_MOVE =  2  // Best move zeroes DTZ (capture or pawn move)
 };
     CHANGE_STM        = -1, // DTZ should check the other side
     ZEROING_BEST_MOVE =  2  // Best move zeroes DTZ (capture or pawn move)
 };
@@ -73,6 +73,6 @@ inline std::ostream& operator<<(std::ostream& os, const ProbeState v) {
     return os;
 }
 
     return os;
 }
 
-}
+} // namespace Stockfish::Tablebases
 
 #endif
 
 #endif