From 7d688d4b3692f9c212e448ff9640ae7d26c8c43b Mon Sep 17 00:00:00 2001 From: Siddharth Date: Fri, 16 Apr 2021 19:11:34 +0530 Subject: [PATCH] doc: fix missing backtick in fs.md PR-URL: https://github.com/nodejs/node/pull/38260 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Nitzan Uziely Reviewed-By: Antoine du Hamel Reviewed-By: Colin Ihrig Reviewed-By: Darshan Sen --- doc/api/fs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index dc31bced554cd9..0cabd57120e424 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -2481,7 +2481,7 @@ changes: * `stats` {fs.Stats} Retrieves the {fs.Stats} for the symbolic link referred to by the path. -The callback gets two arguments `(err, stats)` where `stats` is a {`fs.Stats} +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.