From b5c24dfbe8a80cfd6f1716a007724e56c98f426b Mon Sep 17 00:00:00 2001 From: TATSUNO Yasuhiro Date: Mon, 23 Sep 2019 19:25:15 +0900 Subject: [PATCH] doc: fix type of atime/mtime PR-URL: https://github.com/nodejs/node/pull/29666 Reviewed-By: Luigi Pinca --- doc/api/fs.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index 8aa2d6d8c04e1a..e9cf70c78b75d1 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -2086,8 +2086,8 @@ changes: --> * `fd` {integer} -* `atime` {integer} -* `mtime` {integer} +* `atime` {number|string|Date} +* `mtime` {number|string|Date} Synchronous version of [`fs.futimes()`][]. Returns `undefined`. @@ -3462,8 +3462,8 @@ changes: --> * `path` {string|Buffer|URL} -* `atime` {integer} -* `mtime` {integer} +* `atime` {number|string|Date} +* `mtime` {number|string|Date} Returns `undefined`.