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

Commit

Permalink
Fix docs for fs.*chown
Browse files Browse the repository at this point in the history
Fix bad parameters of fs.chown[Sync], fs.fchown[Sync] and
fs.lchown[Sync] in documentation.

Fixes #1533.
  • Loading branch information
polazarus authored and koichik committed Aug 15, 2011
1 parent 4d186f2 commit e8d268f
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit e8d268f

Please sign in to comment.