diff options
author | RA80533 <32469082+RA80533@users.noreply.github.com> | 2023-01-28 16:10:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-28 22:10:06 +0100 |
commit | 50ba8ae6b2c23467e67d71c204a09c569166ee27 (patch) | |
tree | fbdde8af6e8bb163a4191b6da519ef103088f0aa /cli/tsc/dts/lib.deno.ns.d.ts | |
parent | 8b35229da3d05e080867e88e0a5dfe56115c128e (diff) |
docs: fix typos in `WriteFileOptions`'s JSDoc (#17507)
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 84655a5f3..8d65341de 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -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; |