From 7e6e52362a17f229d03b58bde115dc5417de8084 Mon Sep 17 00:00:00 2001 From: ToPal Date: Wed, 23 Mar 2016 18:54:29 +0300 Subject: [PATCH 1/2] doc: updated fs #5862 removed irrelevant data about fs.readFile --- doc/api/fs.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown index 9d9d0672b6f488..62f6fe63c0049b 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -620,7 +620,7 @@ Synchronous readdir(3). Returns an array of filenames excluding `'.'` and ## fs.readFile(file[, options], callback) -* `file` {String | Integer} filename or file descriptor +* `file` {String} filename * `options` {Object | String} * `encoding` {String | Null} default = `null` * `flag` {String} default = `'r'` From 9f8157f09b48cc47a47566ff556fe823c5f08cb9 Mon Sep 17 00:00:00 2001 From: ToPal Date: Wed, 23 Mar 2016 21:10:51 +0300 Subject: [PATCH 2/2] doc: updated fs removed irrelevant data about fs.readFile --- doc/api/fs.markdown | 4 ---- 1 file changed, 4 deletions(-) diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown index 62f6fe63c0049b..973e3999b3d942 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -646,10 +646,6 @@ If `options` is a string, then it specifies the encoding. Example: fs.readFile('/etc/passwd', 'utf8', callback); ``` -Any specified file descriptor has to support reading. - -_Note: Specified file descriptors will not be closed automatically._ - ## fs.readFileSync(file[, options]) Synchronous version of [`fs.readFile`][]. Returns the contents of the `file`.