X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/72a7c55982140a7e296346e92f66a21d3f741537..f2e4cf3dc689b4e9d362637a9f9347fb49fd18d4:/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<std::string> words;
 
-    // read words from stdin
+    // read words from words.txt
     std::copy(std::istream_iterator<std::string>(in),
               std::istream_iterator<std::string>(),
               std::back_inserter(words));