summaryrefslogtreecommitdiff
path: root/cli/js
diff options
context:
space:
mode:
author迷渡 <justjavac@gmail.com>2020-04-18 12:05:33 +0800
committerGitHub <noreply@github.com>2020-04-18 00:05:33 -0400
commit9d53a7a523982ede5bfae25bbdd849eae8dcbded (patch)
tree66ad09ddbfbfcec78e859c2c55e7ef6c04afaa26 /cli/js
parent957050cd0235c40ccf70c3b253273e0ca5488490 (diff)
fix(doc): `FileInfo.created` is creation time (#4799)
Diffstat (limited to 'cli/js')
-rw-r--r--cli/js/lib.deno.ns.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts
index 0480d2613..cdaff073b 100644
--- a/cli/js/lib.deno.ns.d.ts
+++ b/cli/js/lib.deno.ns.d.ts
@@ -1338,7 +1338,7 @@ declare namespace Deno {
* field from `stat` on Unix and `ftLastAccessTime` on Windows. This may not
* be available on all platforms. */
accessed: number | null;
- /** The last access time of the file. This corresponds to the `birthtime`
+ /** The creation time of the file. This corresponds to the `birthtime`
* field from `stat` on Mac/BSD and `ftCreationTime` on Windows. This may not
* be available on all platforms. */
created: number | null;