Skip to content

Commit 093b367

Browse files
committed
'for' is a code term
1 parent 8ae59da commit 093b367

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

_episodes/02-loop.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ exercises: 0
55
questions:
66
- "How can I do the same operations on many different values?"
77
objectives:
8-
- "Explain what a for loop does."
9-
- "Correctly write for loops to repeat simple calculations."
8+
- "Explain what a `for` loop does."
9+
- "Correctly write `for` loops to repeat simple calculations."
1010
- "Trace changes to a loop variable as the loop runs."
11-
- "Trace changes to other variables as they are updated by a for loop."
11+
- "Trace changes to other variables as they are updated by a `for` loop."
1212
keypoints:
1313
- "Use `for variable in sequence` to process the elements of a sequence one at a time."
14-
- "The body of a for loop must be indented."
14+
- "The body of a `for` loop must be indented."
1515
- "Use `len(thing)` to determine the length of something that contains other values."
1616
---
1717

0 commit comments

Comments
 (0)