X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/72a7c55982140a7e296346e92f66a21d3f741537..a8bda512079352ba81933e278d9ccdb8ef7a9866:/interface/wx/stdstream.h diff --git a/interface/wx/stdstream.h b/interface/wx/stdstream.h index 2fe3a5eeef..a4692c581b 100644 --- a/interface/wx/stdstream.h +++ b/interface/wx/stdstream.h @@ -60,7 +60,7 @@ public: /** @class wxStdInputStream - wxStdInputStream is a std::istream derived stream buffer which reads from + wxStdInputStream is a std::istream derived stream which reads from a wxInputStream. Example: @@ -69,7 +69,7 @@ public: wxStdInputStream in(file); std::vector words; - // read words from stdin + // read words from words.txt std::copy(std::istream_iterator(in), std::istream_iterator(), std::back_inserter(words));