diff --git a/src/Constants.js b/src/Constants.js
index 74bd73d65..a7984dfe3 100644
--- a/src/Constants.js
+++ b/src/Constants.js
@@ -1,5 +1,5 @@
CONSTANTS = {
- Version: "0.19.2",
+ Version: "0.19.3",
//Max level for any skill, assuming no multipliers. Determined by max numerical value in javascript for experience
//and the skill level formula in Player.js. Note that all this means it that when experience hits MAX_INT, then
@@ -237,9 +237,9 @@ CONSTANTS = {
"You by no means need to be an expert. All you need is some familiarity with basic programming " +
"constructs like for/while loops, if statements, " +
"functions, variables, etc. The Netscript programming language most resembles the Javascript language. " +
- "Therefore, a good beginner's programming tutorial to read might " +
+ "Therefore, a good beginner's programming tutorial to read might be " +
"this one. Note that while the Netscript language is similar to Javascript, it is not the exact same, so the " +
- "syntax will vary.
" +
+ "syntax will vary a little bit.
" +
"Running a script requires RAM. The more complex a script is, the more RAM " +
"it requires to run. Scripts can be run on any server you have root access to.
" +
"Here are some Terminal commands that are useful when working with scripts:
" +
diff --git a/src/InteractiveTutorial.js b/src/InteractiveTutorial.js
index 1906159d5..0237f5bc4 100644
--- a/src/InteractiveTutorial.js
+++ b/src/InteractiveTutorial.js
@@ -368,7 +368,7 @@ function iTutorialEvaluateStep() {
case iTutorialSteps.TutorialPageInfo:
iTutorialSetText("This page contains a lot of different documentation about the game's " +
"content and mechanics. I know it's a lot, but I highly suggest you read " +
- "(or at least skim) through this before you start playing . That's the end of the tutorial. " +
+ "(or at least skim) through this before you start playing. That's the end of the tutorial. " +
"Hope you enjoy the game!");
var next = clearEventListeners("interactive-tutorial-next");
next.style.display = "inline-block";