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

fix(docs): remove Deno.dir (#7144)

This commit is contained in:
迷渡 2020-08-21 21:56:12 +08:00 committed by GitHub
parent cf603be24c
commit 9eca347f73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -993,9 +993,9 @@ declare namespace Deno {
} }
/** Synchronously creates a new temporary directory in the default directory /** Synchronously creates a new temporary directory in the default directory
* for temporary files (see also `Deno.dir("temp")`), unless `dir` is specified. * for temporary files, unless `dir` is specified. Other optional options
* Other optional options include prefixing and suffixing the directory name * include prefixing and suffixing the directory name with `prefix` and
* with `prefix` and `suffix` respectively. * `suffix` respectively.
* *
* The full path to the newly created directory is returned. * The full path to the newly created directory is returned.
* *
@ -1013,9 +1013,9 @@ declare namespace Deno {
export function makeTempDirSync(options?: MakeTempOptions): string; export function makeTempDirSync(options?: MakeTempOptions): string;
/** Creates a new temporary directory in the default directory for temporary /** Creates a new temporary directory 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
* optional options include prefixing and suffixing the directory name with * prefixing and suffixing the directory name with `prefix` and `suffix`
* `prefix` and `suffix` respectively. * respectively.
* *
* This call resolves to the full path to the newly created directory. * This call resolves to the full path to the newly created directory.
* *