diff options
author | Tatsuya Yamamoto <the.kinnikuman@gmail.com> | 2020-12-12 21:16:52 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 13:16:52 +0100 |
commit | 93cd9ab0b83e0df644315e7303ffb6280307e723 (patch) | |
tree | 7c589f5a9164b153a9782c92c10808a9a9551c86 | |
parent | c05615d6707a6270113a514888e828e536ea2c35 (diff) |
docs: fix doc to remove annotation about removed function `Deno.dir` (#8732)
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index e42fb855d..12d804f92 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -1079,7 +1079,7 @@ declare namespace Deno { export function makeTempDir(options?: MakeTempOptions): Promise<string>; /** Synchronously creates a new temporary file in the default directory for - * temporary files (see also `Deno.dir("temp")`), unless `dir` is specified. + * temporary files, unless `dir` is specified. * Other optional options include prefixing and suffixing the directory name * with `prefix` and `suffix` respectively. * @@ -1098,7 +1098,7 @@ declare namespace Deno { export function makeTempFileSync(options?: MakeTempOptions): string; /** Creates a new temporary file in the default directory for temporary - * files (see also `Deno.dir("temp")`), unless `dir` is specified. Other + * files, unless `dir` is specified. Other * optional options include prefixing and suffixing the directory name with * `prefix` and `suffix` respectively. * |