aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorjosedelinux <josedelinux@hotmail.com>2024-04-26 19:57:26 +0800
committerGitHub <noreply@github.com>2024-04-26 13:57:26 +0200
commit520eb622f012c4cc17410ba702f82aebdb93c518 (patch)
tree01bfa4af4a32e9757b96b429c8f029fbe2e21516 /docs/src
parent497f3168d13ea9a92ad18c28e8282777ec2acf73 (diff)
downloadlibuv-520eb622f012c4cc17410ba702f82aebdb93c518.tar.gz
libuv-520eb622f012c4cc17410ba702f82aebdb93c518.zip
doc: fix some typos
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/guide/processes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/guide/processes.rst b/docs/src/guide/processes.rst
index 99d65c40..024af1db 100644
--- a/docs/src/guide/processes.rst
+++ b/docs/src/guide/processes.rst
@@ -333,7 +333,7 @@ to hand off their I/O to other processes. Applications include load-balancing
servers, worker processes and other ways to make optimum use of CPU. libuv only
supports sending **TCP sockets or other pipes** over pipes for now.
-To demonstrate, we will look at a echo server implementation that hands of
+To demonstrate, we will look at an echo server implementation that hands off
clients to worker processes in a round-robin fashion. This program is a bit
involved, and while only snippets are included in the book, it is recommended
to read the full code to really understand it.