From 6298a08ee3a68f8474dcd4d26cf99b42203564c6 Mon Sep 17 00:00:00 2001 From: Maju Date: Sat, 26 Oct 2024 20:17:11 +0200 Subject: [PATCH] Update user manual (#1742) Fix typo in user manual --- misc/READMORE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/READMORE.md b/misc/READMORE.md index 93fde858b..451ca8369 100644 --- a/misc/READMORE.md +++ b/misc/READMORE.md @@ -105,7 +105,7 @@ That's why your sockets will be corked by default in most simple cases, includin You can make sure corking is enabled, even for cases where default corking would be enabled, by wrapping whatever sending function calls in a lambda like so: ```c++ -res->cork([]() { +res->cork([res]() { res->end("This Http response will be properly corked and efficient in all cases"); }); ```