Browse Source

doc: Correct blatantly wrong futimes documentation

v0.7.4-release
isaacs 14 years ago
parent
commit
06190928c0
  1. 10
      doc/api/fs.markdown

10
doc/api/fs.markdown

@ -275,13 +275,13 @@ Synchronous open(2).
### fs.utimes(path, atime, mtime, callback)
### fs.utimesSync(path, atime, mtime)
Change file timestamps.
Change file timestamps of the file referenced by the supplied path.
### fs.futimes(path, atime, mtime, callback)
### fs.futimesSync(path, atime, mtime)
### fs.futimes(fd, atime, mtime, callback)
### fs.futimesSync(fd, atime, mtime)
Change file timestamps with the difference that if filename refers to a
symbolic link, then the link is not dereferenced.
Change the file timestamps of a file referenced by the supplied file
descriptor.
### fs.fsync(fd, callback)

Loading…
Cancel
Save