Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
doc: fix # links from (and within) api/fs
  • Loading branch information
rvagg authored and bnoordhuis committed Mar 16, 2012
1 parent 0fb4fb4 commit 6628a3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/api/fs.markdown
Expand Up @@ -137,7 +137,7 @@ Synchronous lchmod(2).
## fs.stat(path, [callback])

Asynchronous stat(2). The callback gets two arguments `(err, stats)` where
`stats` is a [fs.Stats](#fs.Stats) object. See the [fs.Stats](#fs.Stats)
`stats` is a [fs.Stats](#fs_class_fs_stats) object. See the [fs.Stats](#fs_class_fs_stats)
section below for more information.

## fs.lstat(path, [callback])
Expand Down Expand Up @@ -595,7 +595,7 @@ An example to read the last 10 bytes of a file which is 100 bytes long:

## Class: fs.ReadStream

`ReadStream` is a [Readable Stream](stream.html#readable_stream).
`ReadStream` is a [Readable Stream](stream.html#stream_readable_stream).

### Event: 'open'

Expand All @@ -621,7 +621,7 @@ default mode `w`.

## fs.WriteStream

`WriteStream` is a [Writable Stream](stream.html#writable_stream).
`WriteStream` is a [Writable Stream](stream.html#stream_writable_stream).

### Event: 'open'

Expand All @@ -648,7 +648,7 @@ Stop watching for changes on the given `fs.FSWatcher`.
* `filename` {String} The filename that changed (if relevant/available)

Emitted when something changes in a watched directory or file.
See more details in [fs.watch](#fs.watch).
See more details in [fs.watch](#fs_fs_watch_filename_options_listener).

### Event: 'error'

Expand Down

0 comments on commit 6628a3b

Please sign in to comment.