From d4b509584f7d743f8bb2a8581b99989d4094896e Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Fri, 28 Oct 2016 16:49:41 -0700 Subject: [PATCH] doc: use 'an' over 'a', remove redundant sentence PR-URL: https://github.com/nodejs/node/pull/9345 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Roman Reiss --- doc/api/fs.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index 80e9d0c7b9482c..1493d9d016000c 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -867,7 +867,7 @@ added: v0.1.95 * `callback` {Function} Asynchronous fstat(2). The callback gets two arguments `(err, stats)` where -`stats` is a [`fs.Stats`][] object. `fstat()` is identical to [`stat()`][], +`stats` is an [`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) @@ -1521,8 +1521,7 @@ added: v0.0.2 * `callback` {Function} Asynchronous stat(2). The callback gets two arguments `(err, stats)` where -`stats` is a [`fs.Stats`][] object. See the [`fs.Stats`][] section for more -information. +`stats` is an [`fs.Stats`][] object. In case of an error, the `err.code` will be one of [Common System Errors][].