summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorztplz <mysticzt@gmail.com>2018-10-20 11:42:52 +0800
committerRyan Dahl <ry@tinyclouds.org>2018-10-20 01:11:05 -0400
commit826c2f4dac72a05c63bf098ea3ac83790cb30405 (patch)
tree4cb2eed09aa645c9c65758a8fceacba10b2f2bb5
parent2d583f85ee6ef740c1f13e44364d2a55ec6c0c31 (diff)
fix some typo in Docs.md
-rw-r--r--Docs.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/Docs.md b/Docs.md
index 60e80577e..89fa01c05 100644
--- a/Docs.md
+++ b/Docs.md
@@ -47,8 +47,8 @@ https://github.com/denoland/deno/issues/573)
### Example: An implementation of the unix "cat" program
-The copy here is actualy zero-copy. That is, it reads data from the socket and
-writes it back to it without ever calling a memcpy() or similiar.
+The copy here is actually zero-copy. That is, it reads data from the socket and
+writes it back to it without ever calling a memcpy() or similar.
```ts
import * as deno from "deno";
@@ -62,8 +62,8 @@ for (let i = 1; i < deno.args.length; i++) {
### Example: A TCP Server echo server
-The copy here is actualy zero-copy. That is, it reads data from the socket and
-writes it back to it without ever calling a memcpy() or similiar.
+The copy here is actually zero-copy. That is, it reads data from the socket and
+writes it back to it without ever calling a memcpy() or similar.
```ts
import { listen, accept, copy } from "deno";