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

Fix docs for fs.chown family of functions #1533

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions doc/api/fs.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -73,30 +73,30 @@ given to the completion callback.

Synchronous ftruncate(2).

### fs.chown(path, mode, [callback])
### fs.chown(path, uid, gid, [callback])

Asycnronous chown(2). No arguments other than a possible exception are given
to the completion callback.

### fs.chownSync(path, mode)
### fs.chownSync(path, uid, gid)

Synchronous chown(2).

### fs.fchown(path, mode, [callback])
### fs.fchown(path, uid, gid, [callback])

Asycnronous fchown(2). No arguments other than a possible exception are given
to the completion callback.

### fs.fchownSync(path, mode)
### fs.fchownSync(path, uid, gid)

Synchronous fchown(2).

### fs.lchown(path, mode, [callback])
### fs.lchown(path, uid, gid, [callback])

Asycnronous lchown(2). No arguments other than a possible exception are given
to the completion callback.

### fs.lchownSync(path, mode)
### fs.lchownSync(path, uid, gid)

Synchronous lchown(2).

Expand Down