fix(curriculum): sentence construction in build an RPG project (#48783)

* docs: fix sentence construction

* docs: fix sentence construction in build an RPG project

Co-authored-by: Naomi Carrigan <nhcarrigan@gmail.com>

Co-authored-by: Naomi Carrigan <nhcarrigan@gmail.com>
This commit is contained in:
Sriparno Roy 2022-12-20 22:37:33 +05:30 committed by GitHub
parent f91b71a74c
commit 264afea278
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ dashedName: step-16
One of the most powerful tools is your developer console. Depending on your browser, this might be opened by pressing `F12` or `Ctrl+Shift+I`. You can also click the "Console" button above the preview window to see our built-in console. The developer console will include errors that are produced by your code, but you can also use it to see values of variables in your code, which is helpful for debugging.
Add a `console.log("Hello World");` line between your `script` tags, then click the "Console" button to open our console, and you should see the text `Hello World` in your console.
Add a `console.log("Hello World");` line between your `script` tags. Then click the "Console" button to open the console. You should see the text `Hello World`.
Note how the line ends with a semi-colon. It is common practice in JavaScript to end your code lines with semi-colons.