summaryrefslogtreecommitdiff
path: root/docs/examples/tcp_echo.md
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-09-27 10:49:41 -0700
committerGitHub <noreply@github.com>2020-09-27 13:49:41 -0400
commitd2fde8a363f1db9fd37b96b46260dcbf6c4d1b3e (patch)
tree63e876cd972e9d2de192408ba2aee3f508e1c461 /docs/examples/tcp_echo.md
parenteaba9adb03f0427ecf0a7a8b6937a6b82e134266 (diff)
doc: end sentences with a period in examples (#7722)
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 ba70aa795..7e3267c51 100644
--- a/docs/examples/tcp_echo.md
+++ b/docs/examples/tcp_echo.md
@@ -3,9 +3,9 @@
## Concepts
- Listening for TCP port connections with
- [Deno.listen](https://doc.deno.land/builtin/stable#Deno.listen)
+ [Deno.listen](https://doc.deno.land/builtin/stable#Deno.listen).
- Use [Deno.copy](https://doc.deno.land/builtin/stable#Deno.copy) to take
- inbound data and redirect it to be outbound data
+ inbound data and redirect it to be outbound data.
## Example