1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 23:04:45 -05:00

docs: fix typos in WriteFileOptions's JSDoc (#17507)

This commit is contained in:
RA80533 2023-01-28 16:10:06 -05:00 committed by GitHub
parent 8b35229da3
commit 50ba8ae6b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3341,7 +3341,7 @@ declare namespace Deno {
/** If set to `true`, will append to a file instead of overwriting previous
* contents.
*
* @efault {false} */
* @default {false} */
append?: boolean;
/** Sets the option to allow creating a new file, if one doesn't already
* exist at the specified path.
@ -3351,7 +3351,7 @@ declare namespace Deno {
/** If set to `true`, no file, directory, or symlink is allowed to exist at
* the target location. When createNew is set to `true`, `create` is ignored.
*
* @efault {false} */
* @default {false} */
createNew?: boolean;
/** Permissions always applied to file. */
mode?: number;