diff options
author | Tuncer Ayaz <[email protected]> | 2013-12-12 12:29:38 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-01-28 14:53:02 +0100 |
commit | 05f492a4745ab0862da0eca9d60a372c9eb01c9a (patch) | |
tree | c2aac430573bb4dd981348c8d67bef0af3da5ff8 /lib/ssh | |
parent | 1bf94703047ae527004dcda59a443d4cd192704a (diff) | |
download | otp-05f492a4745ab0862da0eca9d60a372c9eb01c9a.tar.gz otp-05f492a4745ab0862da0eca9d60a372c9eb01c9a.tar.bz2 otp-05f492a4745ab0862da0eca9d60a372c9eb01c9a.zip |
Fix incorrect proplists type reference
ssh and public_key were referring to proplists:proplists/0
which does not exist. Fix by using the correct type proplists:proplist/0.
Diffstat (limited to 'lib/ssh')
-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. %%-------------------------------------------------------------------- |