summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTATSUNO Yasuhiro <ytatsuno.jp@gmail.com>2019-09-23 19:25:15 +0900
committerRich Trott <rtrott@gmail.com>2019-09-30 22:01:37 -0700
commit16e47b976beb9ef8d3f78428f044551925cd6a6f (patch)
tree4fab6dd3d3af76ba339d1344993ae0b2d5066c0d /doc
parent15fb02a515bf937bb1045d415dd09bfe632a463b (diff)
downloadandroid-node-v8-16e47b976beb9ef8d3f78428f044551925cd6a6f.tar.gz
android-node-v8-16e47b976beb9ef8d3f78428f044551925cd6a6f.tar.bz2
android-node-v8-16e47b976beb9ef8d3f78428f044551925cd6a6f.zip
doc: fix type of atime/mtime
PR-URL: https://github.com/nodejs/node/pull/29666 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/fs.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/fs.md b/doc/api/fs.md
index d2081c43e9..7ea6835387 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`.
@@ -3472,8 +3472,8 @@ changes:
-->
* `path` {string|Buffer|URL}
-* `atime` {integer}
-* `mtime` {integer}
+* `atime` {number|string|Date}
+* `mtime` {number|string|Date}
Returns `undefined`.