diff --git a/CourseNotes/Scope.ipynb b/CourseNotes/Scope.ipynb
index 1b8e2b180f0ed1e9ddb52a4c1c2bc7ce721e39a5..07aa45a6e887c8dec335e6c54988c574c43cafe4 100644
--- a/CourseNotes/Scope.ipynb
+++ b/CourseNotes/Scope.ipynb
@@ -2,6 +2,7 @@
  "cells": [
   {
    "cell_type": "markdown",
+   "id": "54814145",
    "metadata": {},
    "source": [
     "# Scope of Variables\n",
diff --git a/CourseNotes/conditionalstatements.ipynb b/CourseNotes/conditionalstatements.ipynb
index 79e4443903fa1c59ba7a687a48bdfd8310652f62..ff9ac3f20c0b3b01e51c6af59c3eb7ab79c298e7 100644
--- a/CourseNotes/conditionalstatements.ipynb
+++ b/CourseNotes/conditionalstatements.ipynb
@@ -61,11 +61,10 @@
     "error!\n",
     "\n",
     "> #### More on indentation \n",
-    "In computing languages there are *three* styles to\n",
-    "designate the start and end of code blocks, these being\n",
-    "1.  *brackets*, in C and Java style languages,\n",
-    "2.  *keywords* in Fortran and Shell scripts.\n",
-    "3.  *indentation* in Python.\n",
+    ">In computing languages there are *three* styles to designate the start and end of code blocks, these being:\n",
+    ">1.  *brackets*, in C and Java style languages,\n",
+    ">2.  *keywords* in Fortran and Shell scripts.\n",
+    ">3.  *indentation* in Python.\n",
     "\n",
     "> So in most languages *indentation* of code blocks is *good style* but\n",
     "not essential. However (uniquely?) in  the start and end of blocks are\n",
@@ -162,17 +161,17 @@
     "-   Add careful comments explaining what you are doing.\n",
     "\n",
     ">**Example Code:**\n",
-    "-   One way example:\n",
-    "-   Two way example:\n",
-    "-   Three way example:\n",
-    "-   Which quadrant is a complex number in :\n",
-    "-   Is point inside sphere using a function :\n",
+    ">-   [One way example](../CodeExamples/OneWayConditional.ipynb)\n",
+    ">-   [Two way example](../CodeExamples/TwoWayConditional.ipynb)\n",
+    ">-   [Three way example](../CodeExamples/ThreeWayConditional.ipynb)\n",
+    ">-   [Which quadrant is a complex number in](../CodeExamples/ComplexQuadrant.ipynb)\n",
+    ">-   [Is point inside circle using a function](../CodeExamples/PointsInCircle.ipynb)\n",
     "> Download these and \"play\" with them; in particular change in indentation\n",
     "and see what type of \"crashes\" you get.\n",
     "\n",
     ">> Once you have practiced and understood the `if : elif: else:` syntax you have completed\n",
     "enough to attempt [Checkpoint 2](../Checkpoints/Checkpoint2.ipynb)\n",
-    "Note, Checkpoint is much more tricky than it looks, read in instuctions\n",
+    "Note, Checkpoint 2 is much more tricky than it looks, read in instructions\n",
     "and the **Hint** and plan out all the conditions that your program has\n",
     "to deal with."
    ]