summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorfiredfox <wangyang0123@gmail.com>2016-03-30 21:18:08 +0800
committersilverwind <me@silverwind.io>2016-03-31 00:28:52 +0200
commit4039ef1a581f137329f1a5cd432540d7bd529d5d (patch)
tree7d3a87b1b4415eb866592b002fe5118b80c803d3 /doc
parentbb28770aa1fb541b5a7cc0745b17ca4881bfade6 (diff)
downloadandroid-node-v8-4039ef1a581f137329f1a5cd432540d7bd529d5d.tar.gz
android-node-v8-4039ef1a581f137329f1a5cd432540d7bd529d5d.tar.bz2
android-node-v8-4039ef1a581f137329f1a5cd432540d7bd529d5d.zip
doc: remove redundant parameter comments from fs
Some old version parameter comments are left in fs.markdown. Remove them. PR-URL: https://github.com/nodejs/node/pull/5952 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Robert Lindstädt <robert.lindstaedt@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/fs.markdown10
1 files changed, 0 insertions, 10 deletions
diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown
index e44db918aa..60b1b984b7 100644
--- a/doc/api/fs.markdown
+++ b/doc/api/fs.markdown
@@ -821,9 +821,6 @@ The callback is given the three arguments, `(err, bytesRead, buffer)`.
* `encoding` {String} default = `'utf8'`
* `callback` {Function}
-* `path` {String}
-* `callback` {Function}
-
Asynchronous readdir(3). Reads the contents of a directory.
The callback gets two arguments `(err, files)` where `files` is an array of
the names of the files in the directory excluding `'.'` and `'..'`.
@@ -839,8 +836,6 @@ the filenames returned will be passed as `Buffer` objects.
* `options` {String | Object}
* `encoding` {String} default = `'utf8'`
-* `path` {String}
-
Synchronous readdir(3). Returns an array of filenames excluding `'.'` and
`'..'`.
@@ -900,9 +895,6 @@ string. Otherwise it returns a buffer.
* `encoding` {String} default = `'utf8'`
* `callback` {Function}
-* `path` {String}
-* `callback` {Function}
-
Asynchronous readlink(2). The callback gets two arguments `(err,
linkString)`.
@@ -917,8 +909,6 @@ the link path returned will be passed as a `Buffer` object.
* `options` {String | Object}
* `encoding` {String} default = `'utf8'`
-* `path` {String}
-
Synchronous readlink(2). Returns the symbolic link's string value.
The optional `options` argument can be a string specifying an encoding, or an