diff options
author | Marcus Arendt <[email protected]> | 2014-06-12 14:38:53 +0200 |
---|---|---|
committer | Marcus Arendt <[email protected]> | 2014-06-12 14:38:53 +0200 |
commit | 1f0d7a0e7551fb8ca36996d301a2a4025ebc2419 (patch) | |
tree | 885d872c84d7c942c47407ceb9cabb319892565e /lib/ssh/src/ssh.erl | |
parent | 034a301b215ead5359ed778bcf6d8ab32186b8f9 (diff) | |
parent | a7b3d5fae1f69dfaec1b7548728d3210ffaa7949 (diff) | |
download | otp-1f0d7a0e7551fb8ca36996d301a2a4025ebc2419.tar.gz otp-1f0d7a0e7551fb8ca36996d301a2a4025ebc2419.tar.bz2 otp-1f0d7a0e7551fb8ca36996d301a2a4025ebc2419.zip |
Merge branch 'marcus/ssh-fix-spelling/OTP-11963' into maint
* marcus/ssh-fix-spelling/OTP-11963:
Fix spelling mistakes
Diffstat (limited to 'lib/ssh/src/ssh.erl')
-rw-r--r-- | lib/ssh/src/ssh.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl index bf7ba0be7f..743c01a42c 100644 --- a/lib/ssh/src/ssh.erl +++ b/lib/ssh/src/ssh.erl @@ -432,14 +432,14 @@ handle_ssh_option(Opt) -> throw({error, {eoptions, Opt}}). handle_inet_option({active, _} = Opt) -> - throw({error, {{eoptions, Opt}, "Ssh has built in flow control, " - "and activ is handled internaly user is not allowd" + throw({error, {{eoptions, Opt}, "SSH has built in flow control, " + "and active is handled internally, user is not allowed" "to specify this option"}}); handle_inet_option({inet, Value}) when (Value == inet) or (Value == inet6) -> Value; handle_inet_option({reuseaddr, _} = Opt) -> - throw({error, {{eoptions, Opt},"Is set internaly user is not allowd" + throw({error, {{eoptions, Opt},"Is set internally, user is not allowed" "to specify this option"}}); %% Option verified by inet handle_inet_option(Opt) -> |