]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/stdstream.h
No changes, just merge some strings in wxSVGFileDC.
[wxWidgets.git] / interface / wx / stdstream.h
index 2fe3a5eeefdfdb6049c9a1fcb3781e64feb9ef51..a4692c581b534183a25428ef998b8ee4c333ec1e 100644 (file)
@@ -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));