Browse Source

doc: indentation and structure in fs.markdown

v0.8.7-release
isaacs 13 years ago
parent
commit
f70be203e4
  1. 12
      doc/api/fs.markdown

12
doc/api/fs.markdown

@ -422,7 +422,7 @@ Stop watching for changes on `filename`.
## fs.watch(filename, [options], listener)
Watch for changes on `filename`, where `filename` is either a file or a
directory. The returned object is [fs.FSWatcher](#fs.FSWatcher).
directory. The returned object is a [fs.FSWatcher](#fs_class_fs_fswatcher).
The second argument is optional. The `options` if provided should be an object
containing a boolean member `persistent`, which indicates whether the process
@ -521,9 +521,9 @@ An example to read the last 10 bytes of a file which is 100 bytes long:
### Event: 'open'
`function (fd) { }`
* `fd` {Integer} file descriptor used by the ReadStream.
`fd` is the file descriptor used by the ReadStream.
Emitted when the ReadStream's file is opened.
## fs.createWriteStream(path, [options])
@ -547,9 +547,9 @@ default mode `w`.
### Event: 'open'
`function (fd) { }`
* `fd` {Integer} file descriptor used by the ReadStream.
`fd` is the file descriptor used by the WriteStream.
Emitted when the WriteStream's file is opened.
### file.bytesWritten
@ -574,6 +574,6 @@ See more details in [fs.watch](#fs.watch).
### Event: 'error'
`function (exception) {}`
* `error` {Error object}
Emitted when an error occurs.

Loading…
Cancel
Save