diff --git a/puzzles/Crack_The_Code.ipynb b/puzzles/Crack_The_Code.ipynb
index d31ac401215ba4664482b4eef03d439218439331..110a6eb29d67ba4e2c7a354cd75229bf3bec3fdc 100644
--- a/puzzles/Crack_The_Code.ipynb
+++ b/puzzles/Crack_The_Code.ipynb
@@ -14,8 +14,8 @@
     "\n",
     "<img src=\"https://raw.githubusercontent.com/williamokano/lock-challenge-solver/master/assets/challenge.png\" width=400 height=400 />\n",
     "\n",
-    "To solve this puzzle, we have to think about a way to represent this lock as a machine.\n",
-    "We chose to represent each digit of the code in a Digits function. This function enables us to place some assertions about the correct digits that we take from the hints on the picture. Additionally we make assertions about the correctly placed digits and ,eventually, we come to a solution that is stored in our Digits constant.\n",
+    "To solve this puzzle, we have to think about a way to represent this lock challenge as a machine.\n",
+    "We chose to represent each digit of the code in a Digits constant. This constant enables us to place some assertions about the correct digits that we take from the hints on the picture. Additionally, we make assertions about the correctly placed digits. Eventually, we come to a solution that is stored in our Digits constant.\n",
     "\n",
     "To access the constant from the machine, we have to set it up with `:constants` and initialize the machine with `:init`."
    ]
@@ -111,7 +111,7 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "As we can see when we use the `:browse` functionality, our constant Digits can be called now, by simply typing it in."
+    "As we can see when we use the `:browse` functionality: Our constant Digits can be called now, by simply typing it in."
    ]
   },
   {