Skip to content

Commit

Permalink
Update user manual (#1742)
Browse files Browse the repository at this point in the history
Fix typo in user manual
  • Loading branch information
majudev authored Oct 26, 2024
1 parent b75be6b commit 6298a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/READMORE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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");
});
```
Expand Down

0 comments on commit 6298a08

Please sign in to comment.