aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_socket.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2014-05-14 09:41:55 +0200
committerIngela Anderton Andin <[email protected]>2014-05-14 09:41:55 +0200
commita56077709c1a6a25e19c7b5efc5fcfaa223a36c1 (patch)
tree035655f08328827eb564c8f3b403eb17ac89e789 /lib/ssl/src/ssl_socket.erl
parentf5cc8e99d4b717296880d6959bf2510ad056ae9b (diff)
downloadotp-a56077709c1a6a25e19c7b5efc5fcfaa223a36c1.tar.gz
otp-a56077709c1a6a25e19c7b5efc5fcfaa223a36c1.tar.bz2
otp-a56077709c1a6a25e19c7b5efc5fcfaa223a36c1.zip
ssl: Fix dialyzer spec
Diffstat (limited to 'lib/ssl/src/ssl_socket.erl')
-rw-r--r--lib/ssl/src/ssl_socket.erl5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_socket.erl b/lib/ssl/src/ssl_socket.erl
index e42d637301..8532788ffd 100644
--- a/lib/ssl/src/ssl_socket.erl
+++ b/lib/ssl/src/ssl_socket.erl
@@ -162,10 +162,11 @@ handle_cast(_, State)->
{noreply, State}.
%%--------------------------------------------------------------------
--spec handle_info(msg(), #state{}) -> {noreply, #state{}}.
+-spec handle_info(msg(), #state{}) -> {stop, reason(), #state{}}.
%% Possible return values not used now.
+%% {noreply, #state{}}.
%% |{noreply, #state{}, timeout()} |
-%% {stop, reason(), #state{}}.
+%%
%%
%% Description: Handling all non call/cast messages
%%-------------------------------------------------------------------