diff options
author | Mickaƫl Delahaye <mickael.delahaye@gmail.com> | 2011-08-15 15:09:03 +0200 |
---|---|---|
committer | koichik <koichik@improvement.jp> | 2011-08-15 22:45:41 +0900 |
commit | e8d268fd5fad5ac1356862a20b84cdd58bcb205c (patch) | |
tree | 082974c34c04f10ce31a8579748d4325929ba4e4 /doc | |
parent | 4d186f270fa4cea9835ec60b4417d7ca6f83422a (diff) | |
download | node-new-e8d268fd5fad5ac1356862a20b84cdd58bcb205c.tar.gz |
Fix docs for fs.*chown
Fix bad parameters of fs.chown[Sync], fs.fchown[Sync] and
fs.lchown[Sync] in documentation.
Fixes #1533.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/fs.markdown | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown index 3fa9f1aeb7..6d011647df 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -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). |