]> git.sesse.net Git - stockfish/blobdiff - src/types.h
Assorted code-style triviality
[stockfish] / src / types.h
index 4b7c7cec6f8fee84720eb931bbd503178ec1c420..94be83380a6cf392fe1d3dda3c3bbaf172109591 100644 (file)
@@ -427,7 +427,7 @@ inline Move make(Square from, Square to, PieceType pt = KNIGHT) {
 }
 
 inline bool is_ok(Move m) {
-  return from_sq(m) != to_sq(m); // Catches also MOVE_NULL and MOVE_NONE
+  return from_sq(m) != to_sq(m); // Catch also MOVE_NULL and MOVE_NONE
 }
 
 #endif // #ifndef TYPES_H_INCLUDED