diff options
author | 迷渡 <justjavac@gmail.com> | 2020-04-18 12:05:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 00:05:33 -0400 |
commit | 9d53a7a523982ede5bfae25bbdd849eae8dcbded (patch) | |
tree | 66ad09ddbfbfcec78e859c2c55e7ef6c04afaa26 /cli/js/lib.deno.ns.d.ts | |
parent | 957050cd0235c40ccf70c3b253273e0ca5488490 (diff) |
fix(doc): `FileInfo.created` is creation time (#4799)
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 2 |
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; |