/**
@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:
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));