]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Some code and comment cleanup
[stockfish] / src / misc.cpp
index 04c3c939f76d98229db4c570e089f92375657d31..bb51cf453437e86fa88d3676db62da26f7192880 100644 (file)
@@ -39,7 +39,7 @@ const string Version = "";
 /// usual I/O functionality, all without changing a single line of code!
 /// Idea from http://groups.google.com/group/comp.lang.c++/msg/1d941c0f26ea0d81
 
-struct Tie: public streambuf { // MSVC requires splitted streambuf for cin and cout
+struct Tie: public streambuf { // MSVC requires split streambuf for cin and cout
 
   Tie(streambuf* b, streambuf* l) : buf(b), logBuf(l) {}