From a783ec1356880910858814f688b50df767d7efbf Mon Sep 17 00:00:00 2001 From: Nat Goodspeed Date: Fri, 29 Apr 2016 15:27:22 -0400 Subject: [PATCH] caught typo --- examples/asio/autoecho.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/asio/autoecho.cpp b/examples/asio/autoecho.cpp index ee2d4f61..ef85d142 100644 --- a/examples/asio/autoecho.cpp +++ b/examples/asio/autoecho.cpp @@ -168,7 +168,7 @@ void server( boost::asio::io_service & io_svc, tcp::acceptor & a) { } } } catch ( std::exception const& ex) { - print( tag(), ": catched exception : ", ex.what()); + print( tag(), ": caught exception : ", ex.what()); } io_svc.stop(); print( tag(), ": echo-server stopped");