@@ -233,11 +233,11 @@ and that there is an appropriately constructed response object named
233
233
the ``callback `` parameter. The signature of ``callback `` should be the
234
234
following: ``void(iterator_range<char const *> const &,
235
235
boost::system::error_code const &) ``.
236
- ``response_ = client_.post(request_, content_type, body ) ``
236
+ ``response_ = client_.post(request_, body, content_type ) ``
237
237
The body and content_type parameters are of type
238
238
``boost::network::string<Tag>::type `` where ``Tag `` is the HTTP Client's
239
239
``Tag ``. This uses the request object's other headers.
240
- ``response_ = client_.post(request_, content_type, body , _body_handler=callback) ``
240
+ ``response_ = client_.post(request_, body, content_type , _body_handler=callback) ``
241
241
The body and content_type parameters are of type
242
242
``boost::network::string<Tag>::type `` where ``Tag `` is the HTTP Client's
243
243
``Tag ``. This uses the request object's other headers. Have the response
@@ -263,11 +263,11 @@ and that there is an appropriately constructed response object named
263
263
the ``callback `` parameter. The signature of ``callback `` should be the
264
264
following: ``void(iterator_range<char const *> const &,
265
265
boost::system::error_code const &) ``.
266
- ``response_ = client_.put(request_, content_type, body ) ``
266
+ ``response_ = client_.put(request_, body, content_type ) ``
267
267
The body and content_type parameters are of type
268
268
``boost::network::string<Tag>::type `` where ``Tag `` is the HTTP Client's
269
269
``Tag ``. This uses the request object's other headers.
270
- ``response_ = client_.put(request_, content_type, body , _body_handler=callback) ``
270
+ ``response_ = client_.put(request_, body, content_type , _body_handler=callback) ``
271
271
The body and content_type parameters are of type
272
272
``boost::network::string<Tag>::type `` where ``Tag `` is the HTTP Client's
273
273
``Tag ``. This uses the request object's other headers. Have the response
0 commit comments