aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_client_key_api.erl
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2013-01-22 14:04:05 +0100
committerFredrik Gustafsson <[email protected]>2013-01-22 14:04:05 +0100
commit0dc8d8df58fd677f5421df79960a63c294aa90b9 (patch)
treebc7a385ff7dda714b9d5c8b862c140ae4f2fe31e /lib/ssh/src/ssh_client_key_api.erl
parentb42d06e13d85eb38e80fedeb14a7be87852e440f (diff)
downloadotp-0dc8d8df58fd677f5421df79960a63c294aa90b9.tar.gz
otp-0dc8d8df58fd677f5421df79960a63c294aa90b9.tar.bz2
otp-0dc8d8df58fd677f5421df79960a63c294aa90b9.zip
Fixed some specs - ssh
Diffstat (limited to 'lib/ssh/src/ssh_client_key_api.erl')
-rw-r--r--lib/ssh/src/ssh_client_key_api.erl2
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()}.