fix(doc): FileInfo.created is creation time (#4799)

This commit is contained in:
迷渡 2020-04-18 12:05:33 +08:00 committed by GitHub
parent 957050cd02
commit 9d53a7a523
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;