]> git.sesse.net Git - stockfish/blobdiff - src/uci.h
Standardize Comments
[stockfish] / src / uci.h
index 7ca97d5c6bc455c3dd5129672f278bc3f40ba7d2..048f8c1166e86979333601246cb3182fc2f22c2d 100644 (file)
--- a/src/uci.h
+++ b/src/uci.h
@@ -41,15 +41,15 @@ const int NormalizeToPawnValue = 328;
 
 class Option;
 
-/// Define a custom comparator, because the UCI options should be case-insensitive
+// Define a custom comparator, because the UCI options should be case-insensitive
 struct CaseInsensitiveLess {
   bool operator() (const std::string&, const std::string&) const;
 };
 
-/// The options container is defined as a std::map
+// The options container is defined as a std::map
 using OptionsMap = std::map<std::string, Option, CaseInsensitiveLess>;
 
-/// The Option class implements each option as specified by the UCI protocol
+// The Option class implements each option as specified by the UCI protocol
 class Option {
 
   using OnChange = void (*)(const Option&);