diff options
author | Chandan Kumar <chandankumar.r@gmail.com> | 2021-04-01 13:15:47 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-01 18:45:47 +1100 |
commit | 9e937122c216da77d6bd2db68721ab5b1855a750 (patch) | |
tree | dc49af4ee87e5778f7181a87f82f17b536144add /docs/examples | |
parent | fec1b2a5a4324a7eecdfbb2471931f3b6b0139c5 (diff) |
docs: fix typo (#9946)
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/read_write_files.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/read_write_files.md b/docs/examples/read_write_files.md index a53c2bcbe..8c1eae1ee 100644 --- a/docs/examples/read_write_files.md +++ b/docs/examples/read_write_files.md @@ -77,7 +77,7 @@ write.then(() => console.log("File written to ./hello.txt")); */ ``` -By combining `Deno.writeTextFile` and `JSON.stringify` you can easially write +By combining `Deno.writeTextFile` and `JSON.stringify` you can easily write serialized JSON objects to a file. This example uses synchronous `Deno.writeTextFileSync`, but this can also be done asynchronously using `await Deno.writeTextFile`. |