diff --git a/content/micropython/02.micropython-course/course/02.introduction-python/02.intro-to-micropython.md b/content/micropython/02.micropython-course/course/02.introduction-python/02.intro-to-micropython.md index ec5b1ad155..2d7f56f016 100644 --- a/content/micropython/02.micropython-course/course/02.introduction-python/02.intro-to-micropython.md +++ b/content/micropython/02.micropython-course/course/02.introduction-python/02.intro-to-micropython.md @@ -63,7 +63,7 @@ If there is anything wrong with your code, you will receive an error. If not, it ## Loops -If you have plenty of experience in Arduino, you will be used to the concept of a **loop**. If you don't, you can read more about it [here](www.arduino.cc/reference/en/language/structure/sketch/loop/). This is not a requirement when using MicroPython. You can write a program that either just runs once, or continues to loop over and over. +If you have previous experience with Arduino, you may know the concept of a **loop**. This is not a requirement when using MicroPython. You can write a program that either just runs once, or continues to loop over and over. To make a program loop continuously, you will need to use a **while loop** inside your script.