-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: fixed a missing backtick which broke the styling #38260
Conversation
Fast-track? |
doc/api/fs.md
Outdated
@@ -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`} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We seem to be stylizing "{...} object" without backticks? cc @nodejs/documentation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, removing the backticks makes it a link, which would be preferable IMHO.
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} |
PR-URL: nodejs#38260 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Nitzan Uziely <linkgoron@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
Landed in 7d688d4. Thanks for the contribution :) |
Welcome! It was nothing. I can really feel the GitHub community after being able to contribute to Node.js. 😄 |
PR-URL: #38260 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Nitzan Uziely <linkgoron@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
Fixes #38257