From a4660285660620556179cfc8998c45646d1b2199 Mon Sep 17 00:00:00 2001
From: Siddharth <siddharth.muscat@gmail.com>
Date: Fri, 16 Apr 2021 19:11:34 +0530
Subject: [PATCH] fixed a missing backtick which broke the styling

---
 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..f967d7ec2fc76c 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.