]> git.sesse.net Git - stockfish/blobdiff - src/timeman.cpp
Standardize Comments
[stockfish] / src / timeman.cpp
index 5e57f8f98c5aacfb9932d9d9f1f3d1940de32f73..74f59d9057497e8bd454e6bca6185e063c4119da 100644 (file)
@@ -29,14 +29,14 @@ namespace Stockfish {
 TimeManagement Time; // Our global time management object
 
 
-/// TimeManagement::init() is called at the beginning of the search and calculates
-/// the bounds of time allowed for the current game ply. We currently support:
+// TimeManagement::init() is called at the beginning of the search and calculates
+// the bounds of time allowed for the current game ply. We currently support:
 //      1) x basetime (+ z increment)
 //      2) x moves in y seconds (+ z increment)
 
 void TimeManagement::init(Search::LimitsType& limits, Color us, int ply) {
 
-  // if we have no time, no need to initialize TM, except for the start time,
+  // If we have no time, no need to initialize TM, except for the start time,
   // which is used by movetime.
   startTime = limits.startTime;
   if (limits.time[us] == 0)