Browse Source

docs: fix typo in the documented fchown signature

v0.7.4-release
Jacob H.C. Kragh 13 years ago
committed by Ben Noordhuis
parent
commit
44a5452a4f
  1. 4
      doc/api/fs.markdown

4
doc/api/fs.markdown

@ -85,12 +85,12 @@ to the completion callback.
Synchronous chown(2).
### fs.fchown(path, uid, gid, [callback])
### fs.fchown(fd, uid, gid, [callback])
Asynchronous fchown(2). No arguments other than a possible exception are given
to the completion callback.
### fs.fchownSync(path, uid, gid)
### fs.fchownSync(fd, uid, gid)
Synchronous fchown(2).

Loading…
Cancel
Save