mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
docs: fix typos in WriteFileOptions
's JSDoc (#17507)
This commit is contained in:
parent
8b35229da3
commit
50ba8ae6b2
1 changed files with 2 additions and 2 deletions
4
cli/tsc/dts/lib.deno.ns.d.ts
vendored
4
cli/tsc/dts/lib.deno.ns.d.ts
vendored
|
@ -3341,7 +3341,7 @@ declare namespace Deno {
|
||||||
/** If set to `true`, will append to a file instead of overwriting previous
|
/** If set to `true`, will append to a file instead of overwriting previous
|
||||||
* contents.
|
* contents.
|
||||||
*
|
*
|
||||||
* @∂efault {false} */
|
* @default {false} */
|
||||||
append?: boolean;
|
append?: boolean;
|
||||||
/** Sets the option to allow creating a new file, if one doesn't already
|
/** Sets the option to allow creating a new file, if one doesn't already
|
||||||
* exist at the specified path.
|
* 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
|
/** 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.
|
* the target location. When createNew is set to `true`, `create` is ignored.
|
||||||
*
|
*
|
||||||
* @∂efault {false} */
|
* @default {false} */
|
||||||
createNew?: boolean;
|
createNew?: boolean;
|
||||||
/** Permissions always applied to file. */
|
/** Permissions always applied to file. */
|
||||||
mode?: number;
|
mode?: number;
|
||||||
|
|
Loading…
Reference in a new issue