diff options
Diffstat (limited to 'examples/example02_streaming.cpp')
-rw-r--r-- | examples/example02_streaming.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example02_streaming.cpp b/examples/example02_streaming.cpp index 389b16b..b3984f2 100644 --- a/examples/example02_streaming.cpp +++ b/examples/example02_streaming.cpp @@ -68,7 +68,7 @@ int main(int argc, char *argv[]) sleep_for(2s); for (const auto &event : connection.get_new_events()) { - // Print typo of event and the beginning of the data. + // Print type of event and the beginning of the data. cout << event.type << ": " << event.data.substr(0, 70) << " …" << endl; } |