aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/src/manual/ranch.procs.asciidoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/manual/ranch.procs.asciidoc b/doc/src/manual/ranch.procs.asciidoc
index 0f29533..61973f9 100644
--- a/doc/src/manual/ranch.procs.asciidoc
+++ b/doc/src/manual/ranch.procs.asciidoc
@@ -34,13 +34,13 @@ A list of pids is returned.
.Get the pids of the acceptor processes
[source,erlang]
----
-Pids = ranch:procs(acceptors).
+Pids = ranch:procs(example_listener, acceptors).
----
.Get the pids of the connection processes
[source,erlang]
----
-Pids = ranch:procs(connections).
+Pids = ranch:procs(example_listener, connections).
----
== See also