diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown index 5ce77d5b74e..343941dc532 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -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]) @@ -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' @@ -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' @@ -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'