]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Re-fix a comment
[stockfish] / src / thread.h
index 92f5ed33a168b9742c176055759b01cb78c2c6e7..dc8418dcca5795a06f6b0a7f90244c1cca34b497 100644 (file)
@@ -151,13 +151,13 @@ struct TimerThread : public ThreadBase {
 
 
 /// ThreadPool struct handles all the threads related stuff like init, starting,
-/// parking and, the most important, launching a slave thread at a split point.
+/// parking and, most importantly, launching a slave thread at a split point.
 /// All the access to shared thread data is done through this class.
 
 struct ThreadPool : public std::vector<Thread*> {
 
   void init(); // No c'tor and d'tor, threads rely on globals that should
-  void exit(); // be initialized and valid during the whole thread lifetime.
+  void exit(); // be initialized and are valid during the whole thread lifetime.
 
   MainThread* main() { return static_cast<MainThread*>((*this)[0]); }
   void read_uci_options();