From 9e418afb6c9f606b50041c22a4d095f22538dfe0 Mon Sep 17 00:00:00 2001 From: qicosmos Date: Thu, 18 Apr 2024 15:32:38 +0800 Subject: [PATCH] format --- src/coro_http/examples/example.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/coro_http/examples/example.cpp b/src/coro_http/examples/example.cpp index 00026fbe3..b528d24ef 100644 --- a/src/coro_http/examples/example.cpp +++ b/src/coro_http/examples/example.cpp @@ -210,8 +210,7 @@ async_simple::coro::Lazy use_websocket() { co_return; } - auto result = - co_await client.write_websocket("hello websocket"); + auto result = co_await client.write_websocket("hello websocket"); assert(!result.net_err); auto data = co_await client.read_websocket(); assert(data.resp_body == "hello websocket");