diff options
author | Henrik Nord <[email protected]> | 2015-05-27 10:51:29 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2015-05-27 10:51:29 +0200 |
commit | e8b14cb095582914cb677c89e0b5b4a954379242 (patch) | |
tree | 0cbcb9451fe669f71c6bff3a681e0426d82a9329 /lib/inets/src/http_client | |
parent | 43bfa03bb5f592045994a96aa952e7e3c88519cd (diff) | |
parent | 6dae7e4206a62b1740361c0b0630fdffeb676d18 (diff) | |
download | otp-e8b14cb095582914cb677c89e0b5b4a954379242.tar.gz otp-e8b14cb095582914cb677c89e0b5b4a954379242.tar.bz2 otp-e8b14cb095582914cb677c89e0b5b4a954379242.zip |
Merge remote-tracking branch 'erlang/pr/741'
* erlang/pr/741:
Minor misprints
Diffstat (limited to 'lib/inets/src/http_client')
-rw-r--r-- | lib/inets/src/http_client/httpc_handler.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/inets/src/http_client/httpc_handler.erl b/lib/inets/src/http_client/httpc_handler.erl index 8f2f11ce8e..f4f0c37570 100644 --- a/lib/inets/src/http_client/httpc_handler.erl +++ b/lib/inets/src/http_client/httpc_handler.erl @@ -87,7 +87,7 @@ %% block the httpc manager process in odd cases such as trying to call %% a server that does not exist. (See OTP-6735) The only API function %% sending messages to the handler process that can be called before -%% init has compleated is cancel and that is not a problem! (Send and +%% init has completed is cancel and that is not a problem! (Send and %% stream will not be called before the first request has been sent and %% the reply or part of it has arrived.) %%-------------------------------------------------------------------- @@ -392,7 +392,7 @@ handle_call(info, _, State) -> %% When the request in process has been canceled the handler process is %% stopped and the pipelined requests will be reissued or remaining %% requests will be sent on a new connection. This is is -%% based on the assumption that it is proably cheaper to reissue the +%% based on the assumption that it is probably cheaper to reissue the %% requests than to wait for a potentiall large response that we then %% only throw away. This of course is not always true maybe we could %% do something smarter here?! If the request canceled is not @@ -1345,7 +1345,7 @@ handle_empty_queue(Session, ProfileName, TimeOut, State) -> %% closed by the server, the client may want to close it. NewState = activate_queue_timeout(TimeOut, State), update_session(ProfileName, Session, #session.queue_length, 0), - %% Note mfa will be initilized when a new request + %% Note mfa will be initialized when a new request %% arrives. {noreply, NewState#state{request = undefined, |