diff options
author | Niclas Axelsson <[email protected]> | 2011-03-02 19:38:36 +0100 |
---|---|---|
committer | Niclas Axelsson <[email protected]> | 2011-03-02 19:39:04 +0100 |
commit | e78debc9256aa1907422189381441316e70daf44 (patch) | |
tree | 1d83be083538721e4cdb36fbfe7ced689a763be3 /lib/inets/doc/src/http_client.xml | |
parent | f38a6085c5c65c9324b58e1e2fa8815093688f96 (diff) | |
parent | 748dbeb1524122229373c5964334a8d8f18a525d (diff) | |
download | otp-e78debc9256aa1907422189381441316e70daf44.tar.gz otp-e78debc9256aa1907422189381441316e70daf44.tar.bz2 otp-e78debc9256aa1907422189381441316e70daf44.zip |
Merge branch 'cr/httpc-docs' into dev
* cr/httpc-docs:
inets/httpc: Polish documentation
OTP-9089
Diffstat (limited to 'lib/inets/doc/src/http_client.xml')
-rw-r--r-- | lib/inets/doc/src/http_client.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/inets/doc/src/http_client.xml b/lib/inets/doc/src/http_client.xml index 672ea3fa98..4542211d71 100644 --- a/lib/inets/doc/src/http_client.xml +++ b/lib/inets/doc/src/http_client.xml @@ -42,10 +42,10 @@ dynamically in runtime. Each client profile will spawn a new process to handle each request unless there is a possibility to use a persistent connection with or without pipelining. - The client will add a host header and an empty - te header if there are no such headers present in the request.</p> + The client will add a <c>host</c> header and an empty + <c>te</c> header if there are no such headers present in the request.</p> - <p>The clients supports ipv6 as long as the underlying mechanisms also do + <p>The client supports ipv6 as long as the underlying mechanisms also do so.</p> </section> @@ -87,7 +87,7 @@ httpc:request("http://www.erlang.org"). </code> <p>An ordinary asynchronous request. The result will be sent - to the calling process on the form {http, {ReqestId, Result}}</p> + to the calling process in the form <c>{http, {ReqestId, Result}}</c></p> <code type="erl"> 5 > {ok, RequestId} = httpc:request(get, {"http://www.erlang.org", []}, [], [{sync, false}]). |