From: Vadim Zeitlin Date: Sun, 3 May 2009 09:29:13 +0000 (+0000) Subject: correct a typo in a comment in the example (see #10637) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e4eef50be70ce54cb07bb7103c221dad22454f0e?ds=inline correct a typo in a comment in the example (see #10637) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60500 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/stdstream.h b/interface/wx/stdstream.h index d7fec8f0b6..a4692c581b 100644 --- a/interface/wx/stdstream.h +++ b/interface/wx/stdstream.h @@ -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));