From 10a789e2b8cb4026d80334ab9784e5d6507c3122 Mon Sep 17 00:00:00 2001 From: N1ck1234 <44273182+N1ck1234@users.noreply.github.com> Date: Thu, 17 Jan 2019 12:19:42 -0500 Subject: [PATCH] Grammatical changes to help with readability (#27453) Changed "this much must be already known to you" to " You should already know this much". --- .../tutorials/debugging-node-files-using-cli-commands/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/tutorials/debugging-node-files-using-cli-commands/index.md b/guide/english/javascript/tutorials/debugging-node-files-using-cli-commands/index.md index 416b532a18..e2be499c9c 100644 --- a/guide/english/javascript/tutorials/debugging-node-files-using-cli-commands/index.md +++ b/guide/english/javascript/tutorials/debugging-node-files-using-cli-commands/index.md @@ -12,7 +12,7 @@ Let's say you have a file named as `contents.js`. You would run the file using t node contents.js ``` -This much must be already known to you since you're writing Node.js code. Now any errors that pop up must be debugged. To run the file in debug mode append the keyword `inspect` while running the file. +You should already know this much since you're writing Node.js code. Now any errors that pop up must be debugged. To run the file in debug mode append the keyword `inspect` while running the file. ```bash node inspect contents.js