summaryrefslogtreecommitdiff
path: root/std/archive/README.md
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-10-03 13:19:11 -0700
committerGitHub <noreply@github.com>2020-10-04 07:19:11 +1100
commitd0eb179132c60a7c2513c9d19db03e3d5ca00c70 (patch)
tree627339e0dc2212ed861184d46b6af31605224d24 /std/archive/README.md
parent391eed42f41bd277fff936192b474bfd52eaa1a0 (diff)
docs: end sentences with a period in markdown (#7813)
Diffstat (limited to 'std/archive/README.md')
-rw-r--r--std/archive/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/archive/README.md b/std/archive/README.md
index efa258ca4..b14fd9375 100644
--- a/std/archive/README.md
+++ b/std/archive/README.md
@@ -12,12 +12,12 @@ await tar.append("deno.txt", {
contentSize: content.byteLength,
});
-// Or specifying a filePath
+// Or specifying a filePath.
await tar.append("land.txt", {
filePath: "./land.txt",
});
-// use tar.getReader() to read the contents
+// use tar.getReader() to read the contents.
const writer = await Deno.open("./out.tar", { write: true, create: true });
await Deno.copy(tar.getReader(), writer);
@@ -53,7 +53,7 @@ for await (const entry of untar) {
await ensureFile(entry.fileName);
const file = await Deno.open(entry.fileName, { write: true });
- // <entry> is a reader
+ // <entry> is a reader.
await Deno.copy(entry, file);
}
reader.close();