mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
typo
This commit is contained in:
parent
cc1720132a
commit
b270d6c8d0
1 changed files with 2 additions and 2 deletions
4
cli/js/lib.deno.ns.d.ts
vendored
4
cli/js/lib.deno.ns.d.ts
vendored
|
@ -1578,7 +1578,7 @@ declare namespace Deno {
|
|||
*
|
||||
* const encoder = new TextEncoder();
|
||||
* const data = encoder.encode("Hello world\n");
|
||||
* Deno.writeFileSync("hello1.txt", data); //overwrite "hello.txt" or create it
|
||||
* Deno.writeFileSync("hello1.txt", data); //overwrite "hello1.txt" or create it
|
||||
* Deno.writeFileSync("hello2.txt", data, {create: false}); //only works if "hello2.txt" exists
|
||||
* Deno.writeFileSync("hello3.txt", data, {mode: 0o777}); //set permissions on new file
|
||||
* Deno.writeFileSync("hello4.txt", data, {append: true}); //add data to the end of the file
|
||||
|
@ -1597,7 +1597,7 @@ declare namespace Deno {
|
|||
*
|
||||
* const encoder = new TextEncoder();
|
||||
* const data = encoder.encode("Hello world\n");
|
||||
* await Deno.writeFile("hello1.txt", data); //overwrite "hello.txt" or create it
|
||||
* await Deno.writeFile("hello1.txt", data); //overwrite "hello1.txt" or create it
|
||||
* await Deno.writeFile("hello2.txt", data, {create: false}); //only works if "hello2.txt" exists
|
||||
* await Deno.writeFile("hello3.txt", data, {mode: 0o777}); //set permissions on new file
|
||||
* await Deno.writeFile("hello4.txt", data, {append: true}); //add data to the end of the file
|
||||
|
|
Loading…
Reference in a new issue