From e4eef50be70ce54cb07bb7103c221dad22454f0e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 3 May 2009 09:29:13 +0000 Subject: [PATCH] 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 --- interface/wx/stdstream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));