diff options
author | Fredrik Gustafsson <[email protected]> | 2013-01-22 14:04:05 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-01-22 14:04:05 +0100 |
commit | 0dc8d8df58fd677f5421df79960a63c294aa90b9 (patch) | |
tree | bc7a385ff7dda714b9d5c8b862c140ae4f2fe31e /lib | |
parent | b42d06e13d85eb38e80fedeb14a7be87852e440f (diff) | |
download | otp-0dc8d8df58fd677f5421df79960a63c294aa90b9.tar.gz otp-0dc8d8df58fd677f5421df79960a63c294aa90b9.tar.bz2 otp-0dc8d8df58fd677f5421df79960a63c294aa90b9.zip |
Fixed some specs - ssh
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh/src/ssh_client_key_api.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_client_key_api.erl b/lib/ssh/src/ssh_client_key_api.erl index eed0b85f47..58054a9fc5 100644 --- a/lib/ssh/src/ssh_client_key_api.erl +++ b/lib/ssh/src/ssh_client_key_api.erl @@ -26,7 +26,7 @@ Algorithm :: 'ssh-rsa'| 'ssh-dss'| atom(), ConnectOptions :: proplists:proplist()) -> boolean(). --callback user_key(Algorithm :: 'ssh-rsa'| 'ssh-dss'| atom(), ConnectOptions :: proplists:proplists()) -> +-callback user_key(Algorithm :: 'ssh-rsa'| 'ssh-dss'| atom(), ConnectOptions :: proplists:proplist()) -> {ok, PrivateKey :: #'RSAPrivateKey'{}| #'DSAPrivateKey'{} | term()} | {error, string()}. |