]> git.sesse.net Git - stockfish/blobdiff - src/bitboard.h
Another round of spelling fixes
[stockfish] / src / bitboard.h
index 349005787fd402d6ab958818f46e1262fc4b8356..8154f574c6d7baedde7ccea8d50e94005db7fdfb 100644 (file)
@@ -26,7 +26,7 @@
 namespace Bitboards {
 
 void init();
-void print(Bitboard b);
+const std::string pretty(Bitboard b);
 
 }
 
@@ -265,8 +265,8 @@ inline Bitboard attacks_bb(Piece p, Square s, Bitboard occ) {
   }
 }
 
-/// lsb()/msb() finds the least/most significant bit in a nonzero bitboard.
-/// pop_lsb() finds and clears the least significant bit in a nonzero bitboard.
+/// lsb()/msb() finds the least/most significant bit in a non-zero bitboard.
+/// pop_lsb() finds and clears the least significant bit in a non-zero bitboard.
 
 #ifdef USE_BSFQ