Skip to content

Commit

Permalink
doc: updated fs
Browse files Browse the repository at this point in the history
nodejs#5862
removed irrelevant data about fs.readFile
  • Loading branch information
ToPal committed Mar 23, 2016
1 parent e7e5af9 commit 0ee2c02
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions doc/api/fs.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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'`
Expand All @@ -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`.
Expand Down

0 comments on commit 0ee2c02

Please sign in to comment.