aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorKirill Zaborsky <[email protected]>2014-10-08 16:05:37 +0400
committerKirill Zaborsky <[email protected]>2014-10-08 16:05:37 +0400
commit7044e62609df628be6d093264c6cfcfce1a7300e (patch)
tree57ac7175fc31e0fda1b5d28197c6f55cfdebbbd0 /lib
parent8aa3475bba30fed67c1d886fc4bb5910a196db6c (diff)
downloadotp-7044e62609df628be6d093264c6cfcfce1a7300e.tar.gz
otp-7044e62609df628be6d093264c6cfcfce1a7300e.tar.bz2
otp-7044e62609df628be6d093264c6cfcfce1a7300e.zip
Minor misprints correction
Diffstat (limited to 'lib')
-rw-r--r--lib/inets/src/http_client/httpc_handler.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/src/http_client/httpc_handler.erl b/lib/inets/src/http_client/httpc_handler.erl
index d152d9f0be..0bbd40d656 100644
--- a/lib/inets/src/http_client/httpc_handler.erl
+++ b/lib/inets/src/http_client/httpc_handler.erl
@@ -350,7 +350,7 @@ handle_call(#request{address = Addr} = Request, _,
{reply, ok, State0#state{keep_alive = NewKeepAlive,
session = NewSession}};
undefined ->
- %% Note: tcp-message reciving has already been
+ %% Note: tcp-message receiving has already been
%% activated by handle_pipeline/2.
?hcrd("no current request", []),
cancel_timer(Timers#timers.queue_timer,
@@ -632,7 +632,7 @@ handle_info({timeout, RequestId},
handle_info(timeout_queue, State = #state{request = undefined}) ->
{stop, normal, State};
-%% Timing was such as the pipeline_timout was not canceled!
+%% Timing was such as the queue_timeout was not canceled!
handle_info(timeout_queue, #state{timers = Timers} = State) ->
{noreply, State#state{timers =
Timers#timers{queue_timer = undefined}}};