diff options
author | Robin Wieruch <wrobin@gmx.net> | 2020-05-26 16:08:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 10:08:23 -0400 |
commit | 44477596eda3ca50ea6597d4af1fd809a01e2bdc (patch) | |
tree | 5e2435b4e9c960b4498d3e8731c731ec824e8e8b /docs/examples/tcp_echo.md | |
parent | 228f9c207f8320908325a553c96e465da08fc617 (diff) |
improve docs (#5872)
Diffstat (limited to 'docs/examples/tcp_echo.md')
-rw-r--r-- | docs/examples/tcp_echo.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/tcp_echo.md b/docs/examples/tcp_echo.md index 360c5facc..5dfc71b83 100644 --- a/docs/examples/tcp_echo.md +++ b/docs/examples/tcp_echo.md @@ -1,7 +1,7 @@ ## TCP echo server -This is an example of a simple server which accepts connections on port 8080, -and returns to the client anything it sends. +This is an example of a server which accepts connections on port 8080, and +returns to the client anything it sends. ```ts const listener = Deno.listen({ port: 8080 }); |