1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 07:44:48 -05:00

docs: fix doc to remove annotation about removed function Deno.dir (#8732)

This commit is contained in:
Tatsuya Yamamoto 2020-12-12 21:16:52 +09:00 committed by GitHub
parent c05615d670
commit 93cd9ab0b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1079,7 +1079,7 @@ declare namespace Deno {
export function makeTempDir(options?: MakeTempOptions): Promise<string>; export function makeTempDir(options?: MakeTempOptions): Promise<string>;
/** Synchronously creates a new temporary file in the default directory for /** 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 * Other optional options include prefixing and suffixing the directory name
* with `prefix` and `suffix` respectively. * with `prefix` and `suffix` respectively.
* *
@ -1098,7 +1098,7 @@ declare namespace Deno {
export function makeTempFileSync(options?: MakeTempOptions): string; export function makeTempFileSync(options?: MakeTempOptions): string;
/** Creates a new temporary file in the default directory for temporary /** 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 * optional options include prefixing and suffixing the directory name with
* `prefix` and `suffix` respectively. * `prefix` and `suffix` respectively.
* *