aboutsummaryrefslogtreecommitdiffstats
path: root/manual/ranch_ssl.md
diff options
context:
space:
mode:
Diffstat (limited to 'manual/ranch_ssl.md')
-rw-r--r--manual/ranch_ssl.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/manual/ranch_ssl.md b/manual/ranch_ssl.md
index af271a5..e8a41ec 100644
--- a/manual/ranch_ssl.md
+++ b/manual/ranch_ssl.md
@@ -6,7 +6,7 @@ The `ranch_ssl` module implements an SSL Ranch transport.
Types
-----
-### opts() = [{backlog, non_neg_integer()}
+### opt() = {backlog, non_neg_integer()}
| {cacertfile, string()}
| {cacerts, [Der::binary()]}
| {cert, Der::binary()}
@@ -32,7 +32,7 @@ Types
| {send_timeout_close, boolean()}
| {verify, ssl:verify_type()}
| {verify_fun, {fun(), InitialUserState::term()}},
- | {versions, [atom()]}].
+ | {versions, [atom()]}
> Listen options.
>
@@ -40,6 +40,10 @@ Types
> be set on the socket, but only the options that should be
> set independently of protocol implementation.
+### opts() = [opt()]
+
+> Listen options.
+
Option descriptions
-------------------