From c9b144ddd47e320b10fa49ab4722ff716d26012a Mon Sep 17 00:00:00 2001 From: Kevin Donahue Date: Fri, 29 Apr 2016 21:09:34 -0400 Subject: [PATCH] doc: linkify remaining references to fs.Stats object One reference to the `fs.Stats object` is linkified, while two other similarly made references to the object are not linkified. Linking the remaining references makes sense due to similar context. PR-URL: https://github.com/nodejs/node/pull/6485 Reviewed-By: Benjamin Gruenbaum Reviewed-By: James M Snell --- doc/api/fs.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown index 87e7fcaa36..fa01a51e3d 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -438,8 +438,8 @@ Synchronous fdatasync(2). Returns `undefined`. ## fs.fstat(fd, callback) Asynchronous fstat(2). The callback gets two arguments `(err, stats)` where -`stats` is a `fs.Stats` object. `fstat()` is identical to [`stat()`][], except that -the file to be stat-ed is specified by the file descriptor `fd`. +`stats` is a [`fs.Stats`][] object. `fstat()` is identical to [`stat()`][], +except that the file to be stat-ed is specified by the file descriptor `fd`. ## fs.fstatSync(fd) @@ -504,9 +504,9 @@ Synchronous link(2). Returns `undefined`. ## fs.lstat(path, callback) Asynchronous lstat(2). The callback gets two arguments `(err, stats)` where -`stats` is a `fs.Stats` object. `lstat()` is identical to `stat()`, except that if -`path` is a symbolic link, then the link itself is stat-ed, not the file that it -refers to. +`stats` is a [`fs.Stats`][] object. `lstat()` is identical to `stat()`, +except that if `path` is a symbolic link, then the link itself is stat-ed, +not the file that it refers to. ## fs.lstatSync(path)