]> git.sesse.net Git - stockfish/blobdiff - src/types.h
Tweak dynamic contempt (the birthday patch)
[stockfish] / src / types.h
index cc4008b3e72702fd9220a3dfd5e3fd34d7dee562..5197e9fbbe3b0d50cd57f4a89d52009323b8bc0e 100644 (file)
@@ -341,7 +341,7 @@ inline Score operator*(Score s, int i) {
   return result;
 }
 
-/// Multiplication of a Score by an boolean
+/// Multiplication of a Score by a boolean
 inline Score operator*(Score s, bool b) {
   return Score(int(s) * int(b));
 }