aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide/listeners.asciidoc
diff options
context:
space:
mode:
authordeveloperworks <[email protected]>2016-05-11 22:08:11 +0800
committerLoïc Hoguin <[email protected]>2016-09-19 13:37:38 +0200
commit96e74c91def06ab3e1b35a5a3b2cd832b11db3e8 (patch)
tree89550923fc323a741584d10fad8b916ec4d893ca /doc/src/guide/listeners.asciidoc
parent2d56329c7b75f282fb70204a32dbd761f738f5b4 (diff)
downloadranch-96e74c91def06ab3e1b35a5a3b2cd832b11db3e8.tar.gz
ranch-96e74c91def06ab3e1b35a5a3b2cd832b11db3e8.tar.bz2
ranch-96e74c91def06ab3e1b35a5a3b2cd832b11db3e8.zip
Fix a spelling issue in guide
Diffstat (limited to 'doc/src/guide/listeners.asciidoc')
-rw-r--r--doc/src/guide/listeners.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/guide/listeners.asciidoc b/doc/src/guide/listeners.asciidoc
index ef2d49c..87e77d2 100644
--- a/doc/src/guide/listeners.asciidoc
+++ b/doc/src/guide/listeners.asciidoc
@@ -4,7 +4,7 @@ A listener is a set of processes whose role is to listen on a port
for new connections. It manages a pool of acceptor processes, each
of them indefinitely accepting connections. When it does, it starts
a new process executing the protocol handler code. All the socket
-programming is abstracted through the user of transport handlers.
+programming is abstracted through the use of transport handlers.
The listener takes care of supervising all the acceptor and connection
processes, allowing developers to focus on building their application.