From 93cd9ab0b83e0df644315e7303ffb6280307e723 Mon Sep 17 00:00:00 2001 From: Tatsuya Yamamoto Date: Sat, 12 Dec 2020 21:16:52 +0900 Subject: [PATCH] docs: fix doc to remove annotation about removed function `Deno.dir` (#8732) --- cli/dts/lib.deno.ns.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index e42fb855d4..12d804f922 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; /** 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. *