From 8e7ef7aa0f5146b5c0c5152766dd41168bdc2c22 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Thu, 3 Oct 2019 02:56:55 -0700 Subject: [PATCH] Fix doc typo --- include/boost/beast/core/async_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/beast/core/async_base.hpp b/include/boost/beast/core/async_base.hpp index 0d9ce379..c5760308 100644 --- a/include/boost/beast/core/async_base.hpp +++ b/include/boost/beast/core/async_base.hpp @@ -117,7 +117,7 @@ namespace beast { // `net::post` will be used to call the completion handler, otherwise // the completion handler will be invoked directly. - this->invoke(is_continuation, ec, total_bytes_transferred_); + this->complete(is_continuation, ec, total_bytes_transferred_); } };