summaryrefslogtreecommitdiff
path: root/docs/examples/tcp_echo.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/tcp_echo.md')
-rw-r--r--docs/examples/tcp_echo.md4
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 });