]> git.sesse.net Git - stockfish/blobdiff - src/movegen.h
Improve grammar of comments
[stockfish] / src / movegen.h
index b15f1230b130b7280217ede217c5023460588e08..5eee2f1acf8647cdbefce1ce5f60cc0153c29678 100644 (file)
@@ -56,8 +56,9 @@ inline bool operator<(const ExtMove& f, const ExtMove& s) {
 template<GenType>
 ExtMove* generate(const Position& pos, ExtMove* moveList);
 
-/// The MoveList struct is a simple wrapper around generate(). It sometimes comes
-/// in handy to use this class instead of the low level generate() function.
+/// The MoveList struct wraps the generate() function and returns a convenient
+/// list of moves. Using MoveList is sometimes preferable to directly calling
+/// the lower level generate() function.
 template<GenType T>
 struct MoveList {