diff --git a/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1.ipynb b/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1.ipynb
index 1320e40d1313ab560acec4ef9d34cb89467eb904..f27daba4797be990b2f41890ade95ae6ad63ad10 100644
--- a/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1.ipynb
+++ b/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1.ipynb
@@ -646,7 +646,7 @@
    "outputs": [],
    "source": [
     "def format_date(month, day, year):\n",
-    "    \"\"\"returns a string representing the date, such as Feb 11th of ‘23\"\"\"\n",
+    "    \"\"\"returns a string representing the date, such as Sep 22nd of ‘23\"\"\"\n",
     "    result_str = \"\"\n",
     "    result_str += format_month(month)\n",
     "    result_str += \" \" + format_day(day)\n",
@@ -664,7 +664,7 @@
     {
      "data": {
       "text/plain": [
-       "\"Sep 23rd of '22\""
+       "\"Sep 22nd of '23\""
       ]
      },
      "execution_count": 12,
@@ -673,7 +673,7 @@
     }
    ],
    "source": [
-    "format_date(9, 23, 2022)"
+    "format_date(9, 22, 2023)"
    ]
   },
   {
diff --git a/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1_template_Gurmail_lec1.ipynb b/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1_template_Gurmail_lec1.ipynb
index 4dfcd8f0c40e5161edd8cd78d8c5baab024e8b1c..c4f7b1323cfff3529584cb587a52b5502c953cfd 100644
--- a/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1_template_Gurmail_lec1.ipynb
+++ b/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1_template_Gurmail_lec1.ipynb
@@ -505,7 +505,7 @@
    "outputs": [],
    "source": [
     "def format_date(month, day, year):\n",
-    "    \"\"\"returns a string representing the date, such as Feb 11th of ‘23\"\"\"\n",
+    "    \"\"\"returns a string representing the date, such as Sep 22nd of ‘23\"\"\"\n",
     "    pass"
    ]
   },
@@ -516,7 +516,7 @@
    "metadata": {},
    "outputs": [],
    "source": [
-    "format_date(9, 23, 2022)"
+    "format_date(9, 22, 2023)"
    ]
   },
   {
diff --git a/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1_template_Gurmail_lec2.ipynb b/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1_template_Gurmail_lec2.ipynb
index 16189290300922237f46a6aba72660757624f011..569818eab25d439b03672e05beef3bb62a88941f 100644
--- a/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1_template_Gurmail_lec2.ipynb
+++ b/f23/Gurmail_Lecture_Notes/08_Conditionals-1/lec_08_Conditionals1_template_Gurmail_lec2.ipynb
@@ -505,7 +505,7 @@
    "outputs": [],
    "source": [
     "def format_date(month, day, year):\n",
-    "    \"\"\"returns a string representing the date, such as Feb 11th of ‘23\"\"\"\n",
+    "    \"\"\"returns a string representing the date, such as Sep 22nd of ‘23\"\"\"\n",
     "    pass"
    ]
   },