diff options
author | Hans Nilsson <[email protected]> | 2018-03-20 12:08:36 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2018-03-20 12:39:06 +0100 |
commit | 1a93d0f54e4064b22923cc5cb426c82150ad4431 (patch) | |
tree | 874fcc56a6906cf458e449647f564e480415a345 /lib/ssh | |
parent | 0f2ead7bedeedc852db2deeeaa0e9e096bba8c0f (diff) | |
download | otp-1a93d0f54e4064b22923cc5cb426c82150ad4431.tar.gz otp-1a93d0f54e4064b22923cc5cb426c82150ad4431.tar.bz2 otp-1a93d0f54e4064b22923cc5cb426c82150ad4431.zip |
ssh: Fix bad spec for double_algs() in ssh.hrl
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/src/ssh.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh.hrl b/lib/ssh/src/ssh.hrl index 4711f54fb5..8d950eea3c 100644 --- a/lib/ssh/src/ssh.hrl +++ b/lib/ssh/src/ssh.hrl @@ -114,7 +114,7 @@ | {mac, double_algs()} | {compression, double_algs()} . -type simple_algs() :: list( atom() ) . --type double_algs() :: list( {client2serverlist,simple_algs()} | {server2client,simple_algs()} ) +-type double_algs() :: list( {client2server,simple_algs()} | {server2client,simple_algs()} ) | simple_algs() . -type options() :: #{socket_options := socket_options(), |