diff options
author | niamtokik <[email protected]> | 2025-03-08 10:29:38 +0000 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-07-28 12:35:16 +0200 |
commit | d272ca07524a61000324b2b7f7ad1ce9b2dd1487 (patch) | |
tree | 97322d762036b3d1b0235a821c8e92c029ff42cf | |
parent | bd5de43249de5b450edcb64779c6fac5e87daa2e (diff) | |
download | ranch-d272ca07524a61000324b2b7f7ad1ce9b2dd1487.tar.gz ranch-d272ca07524a61000324b2b7f7ad1ce9b2dd1487.tar.bz2 ranch-d272ca07524a61000324b2b7f7ad1ce9b2dd1487.zip |
ranch:procs/2 examples were not correctly called (missing
first argument reference).
-rw-r--r-- | doc/src/manual/ranch.procs.asciidoc | 4 |
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 |