diff options
author | Ingela Anderton Andin <[email protected]> | 2019-05-09 07:43:30 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2019-05-09 07:43:30 +0200 |
commit | cb6ccd90bb8a23ac5e6afd9df65887d2f1723338 (patch) | |
tree | 2a364877164f3f0ad924bbf0c68d1af0f26f6b39 | |
parent | d21bccb7e53ea13d2d3e1a2979edb63f04bac56d (diff) | |
download | otp-cb6ccd90bb8a23ac5e6afd9df65887d2f1723338.tar.gz otp-cb6ccd90bb8a23ac5e6afd9df65887d2f1723338.tar.bz2 otp-cb6ccd90bb8a23ac5e6afd9df65887d2f1723338.zip |
ssl: Avoid dialyzer warning
Maybe we should only have specs for external APIs?!
This is a how to write spec problem that we have to address later.
-rw-r--r-- | lib/ssl/src/ssl_handshake.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_handshake.erl b/lib/ssl/src/ssl_handshake.erl index 29db1b07c4..9e7f6851c9 100644 --- a/lib/ssl/src/ssl_handshake.erl +++ b/lib/ssl/src/ssl_handshake.erl @@ -92,8 +92,8 @@ hello_request() -> #hello_request{}. %%-------------------------------------------------------------------- --spec server_hello(binary(), ssl_record:ssl_version(), ssl_record:connection_states(), - Extension::map()) -> #server_hello{}. +%%-spec server_hello(binary(), ssl_record:ssl_version(), ssl_record:connection_states(), +%% Extension::map()) -> #server_hello{}. %% %% Description: Creates a server hello message. %%-------------------------------------------------------------------- |