From f1cc8cfb2dea9e05f83a1f2856b27e926189a859 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 9 Jan 2020 19:01:52 +0100 Subject: [PATCH] =?UTF-8?q?Typo:=20typo=20=E2=86=92=20type.=20=F0=9F=98=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/example02_streaming.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }