Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
doc: Correct blatantly wrong futimes documentation
  • Loading branch information
isaacs committed Oct 31, 2011
1 parent 4d4900f commit 0619092
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/api/fs.markdown
Expand Up @@ -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)

Expand Down

0 comments on commit 0619092

Please sign in to comment.