0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 17:34:47 -05:00

docs: fix typo (#9946)

This commit is contained in:
Chandan Kumar 2021-04-01 13:15:47 +05:30 committed by GitHub
parent fec1b2a5a4
commit 9e937122c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`.