diff options
author | Ingela Anderton Andin <[email protected]> | 2014-01-28 14:57:35 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-01-28 14:57:35 +0100 |
commit | 9ec3ad0d292a5b89a332cb24ed2246a3bfdf9443 (patch) | |
tree | 0e6aa74c6bc9906a442a1c4569657861bf570859 /lib/ssh/src/ssh.erl | |
parent | 4e07b3f6989fd28b65a1ac04c2ae1c6a8dae6ff2 (diff) | |
parent | f98905ad6f76fda775c0c75c410adbd9dd642916 (diff) | |
download | otp-9ec3ad0d292a5b89a332cb24ed2246a3bfdf9443.tar.gz otp-9ec3ad0d292a5b89a332cb24ed2246a3bfdf9443.tar.bz2 otp-9ec3ad0d292a5b89a332cb24ed2246a3bfdf9443.zip |
Merge branch 'ia/tuncer/dialyzer-fixes/OTP-11627'
* ia/tuncer/dialyzer-fixes/OTP-11627:
Fix incorrect type reference (inet:ipaddress() -> inet:ip_address())
Consistently format public_key(3)
Fix incorrect use of public_key:private_key/0 type
Fix incorrect proplists type reference
Diffstat (limited to 'lib/ssh/src/ssh.erl')
-rw-r--r-- | lib/ssh/src/ssh.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl index 2685b1553b..9f571adba2 100644 --- a/lib/ssh/src/ssh.erl +++ b/lib/ssh/src/ssh.erl @@ -59,8 +59,8 @@ stop() -> application:stop(ssh). %%-------------------------------------------------------------------- --spec connect(string(), integer(), proplists:proplists()) -> {ok, pid()} | {error, term()}. --spec connect(string(), integer(), proplists:proplists(), timeout()) -> {ok, pid()} | {error, term()}. +-spec connect(string(), integer(), proplists:proplist()) -> {ok, pid()} | {error, term()}. +-spec connect(string(), integer(), proplists:proplist(), timeout()) -> {ok, pid()} | {error, term()}. %% %% Description: Starts an ssh connection. %%-------------------------------------------------------------------- |