We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb9b55 commit 0e12b94Copy full SHA for 0e12b94
libs/network/doc/index.rst
@@ -76,8 +76,8 @@ The client is as simple as this:
76
client::request request_("http://127.0.0.1:8000/");
77
request_ << header("Connection", "close");
78
client client_;
79
- client::response response_ = client_.get(request);
80
- std::string body = body(response_);
+ client::response response_ = client_.get(request_);
+ std::string body_ = body(response_);
81
82
And the corresponding server code is listed below:
83
0 commit comments