]> git.saurik.com Git - wxWidgets.git/commitdiff
correct a typo in a comment in the example (see #10637)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 May 2009 09:29:13 +0000 (09:29 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 May 2009 09:29:13 +0000 (09:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60500 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/stdstream.h

index d7fec8f0b6b3313d4a847b418ab2abedacae7dea..a4692c581b534183a25428ef998b8ee4c333ec1e 100644 (file)
@@ -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));