From e4a592552252b8579e7938431a1fbf26f2cac5dc Mon Sep 17 00:00:00 2001
From: Louis Oliphant <ltoliphant@wisc.edu>
Date: Tue, 13 Feb 2024 16:21:04 -0600
Subject: [PATCH] updated Louis's lecture 11

---
 .../10_Iteration1/Lec_10_Iteration1_Template_Oliphant.ipynb   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/s24/Louis_Lecture_Notes/10_Iteration1/Lec_10_Iteration1_Template_Oliphant.ipynb b/s24/Louis_Lecture_Notes/10_Iteration1/Lec_10_Iteration1_Template_Oliphant.ipynb
index 70c9100..ff1dafd 100644
--- a/s24/Louis_Lecture_Notes/10_Iteration1/Lec_10_Iteration1_Template_Oliphant.ipynb
+++ b/s24/Louis_Lecture_Notes/10_Iteration1/Lec_10_Iteration1_Template_Oliphant.ipynb
@@ -108,11 +108,11 @@
     "#code after while loop\n",
     "```\n",
     "\n",
-    "If `CONDITION` is true then the indented block of code will be executed and flow-of-control will loop back up to the `CONDITION` again to check its value.  If it remains true, the indented block of code will be executed and this process will repeat indefinitely.  If the `CONDITION` is false the indented block of code will be skipped and the first line after the indented block will be executed.\n",
+    "If `CONDITION` is true then the indented block of code will be executed and flow-of-control will loop back up to the `CONDITION` again to check its value.  If it remains true, the indented block of code will be executed again.  This process will repeat indefinitely.  If the `CONDITION` is false the indented block of code will be skipped and the first line after the indented block will be executed.\n",
     "\n",
     "Try the example in the cell below and visualize it running using [the python tutor](https://pythontutor.com/render.html#code=n%20%3D%200%0Awhile%20n%20%3C%2010%3A%0A%20%20%20%20print%28n%29%0A%20%20%20%20n%20%2B%3D%201%0Aprint%28'Done!'%29&cumulative=false&curInstr=0&heapPrimitives=nevernest&mode=display&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false).\n",
     "\n",
-    "In addition, we will be looking at the [slides](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/blob/main/s24/Common/10_Iteration-1/10_Iteration-1.pdf) that compare the **if statement** and the **while loop**.  Their syntax is very similar but their flow of control is different."
+    "In addition, we will be looking at the [slides](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/blob/main/s24/Common/10_Iteration-1/10_Iteration-1.pdf) that compare the **if statement** and the **while loop**.  Their syntax is very similar but their flow of control is different.  With an if-statement, the indented block of code will run at most once.  Which a while-loop, the indented block may run over and over until the `CONDITION` is false."
    ]
   },
   {
-- 
GitLab