diff --git a/src/Constants.js b/src/Constants.js
index ff3d7d89e..438b1311c 100644
--- a/src/Constants.js
+++ b/src/Constants.js
@@ -332,7 +332,7 @@ CONSTANTS = {
TutorialNetscriptText: "Netscript is a programming language implemented for this game. The language has " +
"your basic programming constructs and several built-in commands that are used to hack.
" +
"Official Wiki and Documentation
" +
- "Check out Bitburner's wiki for the official Netscript documentation" +
+ "Check out Bitburner's wiki for the official Netscript documentation" +
". The wiki documentation will contain more details and " +
"code examples than this documentation page. Also, it can be opened up in another tab/window for convenience!
" +
" Variables and data types
" +
@@ -709,6 +709,7 @@ CONSTANTS = {
"-Variables assigned to arrays are now passed by value rather than reference
" +
"-Incrementing/Decrementing are now available (i++, ++i)
" +
"-You no longer need semicolons at the end of block statements
" +
+ "-Elif is no longer valid. Use 'else if' instead
" +
"-Netscript's Hacknet Node API functions no longer log anything
" +
"-Stock prices now update every ~6 seconds when the game is active (was 10 seconds before)
" +
"-Added a new mechanic that affects how stock prices change
" +
@@ -961,6 +962,7 @@ CONSTANTS = {
"-Variables assigned to arrays are now passed by value rather than reference
" +
"-Incrementing/Decrementing are now available (i++, ++i)
" +
"-You no longer need semicolons at the end of block statements
" +
+ "-Elif is no longer valid. Use 'else if' instead
" +
"-Netscript's Hacknet Node API functions no longer log anything
" +
"-Stock prices now update every ~6 seconds when the game is active (was 10 seconds before)
" +
"-Added a new mechanic that affects how stock prices change
" +