From d7de0d4ded108107a792fe7eb53cabd863233ef6 Mon Sep 17 00:00:00 2001 From: Malte Schmitz Date: Sun, 27 Nov 2016 00:16:00 +0100 Subject: [PATCH] Fix typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5a0557f..5655527 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ javac -d target/classes src/main/java/*.java src/main/java/**/*.java ## Running -You can the example code in `mult.whl` with +You can run the example code in `mult.whl` with ``` java -cp target/classes Main mult.whl @@ -55,7 +55,7 @@ The expected output is ## Exercise -In order to understand how this little application works, I suggest trying to extend is. For example you could try to implement the `++` operator which increments a variable. This has to be done in three steps +In order to understand how this little application works, I suggest trying to extend it. For example you could try to implement the `++` operator which increments a variable. This has to be done in three steps 1. Add a class `Increment` in the `program` package with the attribute `identifier` of type `Identifier` storing the name of the variable that will be incremented.