We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f95cbef commit b648a94Copy full SHA for b648a94
advanced-usage.md
@@ -213,7 +213,7 @@ session.RemoveContent(); // don't send a body in next request
213
auto& headers = session.GetHeader(); // also don't send unnecessary headers
214
headers.erase("content-type"); // headers interface is case-insensitive
215
session.SetUrl(getUrl);
216
-cpr::Response getResponse = session.Get(); // Equivalent to cpr::Get(getUrl);
+cpr::Response getResponse = session.Get(); // equivalent to cpr::Get(getUrl);
217
std::cout << getResponse.text << std::endl;
218
// [...] "headers": " My-Custom-Header": " hello", [...] /* no data */
219
```
0 commit comments