Minor corrections in API documentation

This commit is contained in:
Marco Antognini 2012-08-23 12:34:51 +02:00
parent 757a785ed7
commit f970a6441f
13 changed files with 27 additions and 27 deletions

View file

@ -340,7 +340,7 @@ public :
////////////////////////////////////////////////////////////
/// \brief Construct the HTTP client with the target host
///
/// This is equivalent to calling SetHost(host, port).
/// This is equivalent to calling setHost(host, port).
/// The port has a default value of 0, which means that the
/// HTTP client will use the right port according to the
/// protocol used (80 for HTTP, 443 for HTTPS). You should
@ -373,7 +373,7 @@ public :
////////////////////////////////////////////////////////////
/// \brief Send a HTTP request and return the server's response.
///
/// You must have a valid host before sending a request (see SetHost).
/// You must have a valid host before sending a request (see setHost).
/// Any missing mandatory header field in the request will be added
/// with an appropriate value.
/// Warning: this function waits for the server's response and may

View file

@ -227,7 +227,7 @@ private:
///
/// When a socket is connected to a remote host, you can
/// retrieve informations about this host with the
/// getRemoteAddress and GetRemotePort functions. You can
/// getRemoteAddress and getRemotePort functions. You can
/// also get the local port to which the socket is bound
/// (which is automatically chosen when the socket is connected),
/// with the getLocalPort function.