diff options
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 0840c35d4..a53c2bcbe 100644 --- a/docs/examples/read_write_files.md +++ b/docs/examples/read_write_files.md @@ -68,7 +68,7 @@ command. /** * write.ts */ -const write = await Deno.writeTextFile("./hello.txt", "Hello World!"); +const write = Deno.writeTextFile("./hello.txt", "Hello World!"); write.then(() => console.log("File written to ./hello.txt")); |