-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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
Wrong variable used in documentation #23899
Comments
I think you're right. Would you care to open a PR? |
Sure, if you can guide me to the correct file. I couldn't find the doc in https://github.com/nodejs/node/tree/master/doc/guides folder |
It's not in this repository, it's in the website's repository: https://github.com/nodejs/nodejs.org/blob/master/locale/en/docs/guides/dont-block-the-event-loop.md. |
I saw this was unassigned and went ahead and made a PR. I hope you don't mind (^_^) |
@Flowkrad Though I don't mind and thanks to keeping me free, I prefer not to do like this. It wastes others time otherwise. |
In the documentation, https://nodejs.org/en/docs/guides/dont-block-the-event-loop/
took = process.hrtime(n);
should be replaced bytook = process.hrtime(before);
The text was updated successfully, but these errors were encountered: