Skip to content

Commit 3c9d0ab

Browse files
Linter fix
1 parent 6238558 commit 3c9d0ab

File tree

1 file changed

+2
-2
lines changed
  • content/micropython/03.micropython/01.basics/02. loops

1 file changed

+2
-2
lines changed

content/micropython/03.micropython/01.basics/02. loops/loops.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ To better understand these loops, let’s imagine them as tasks at the supermark
2222

2323
- **`for` loops**: Imagine walking down a supermarket aisle with a shopping list that specifies exactly how many items to pick up, one by one, in order. Once you’ve gathered all the items on your list, your task is complete. This is like a `for` loop iterating over a sequence, handling each specified item one at a time.
2424

25-
TODO:!(FOR ILUSTRATION)[]
25+
TODO:!(FOR ILLUSTRATION)[]
2626

2727
- **`while` loops**: Imagine going to the supermarket to buy a certain product that’s on sale, as long as it stays in stock. You keep coming back, day after day, until the sale ends or the stock runs out. In a `while` loop, you keep “coming back” as long as a condition (like the sale continuing) remains true.
2828

29-
TODO:!(WHILE ILUSTRATION)[]
29+
TODO:!(WHILE ILLUSTRATION)[]
3030

3131
Let's jump into each of these with examples.
3232

0 commit comments

Comments
 (0)