Skip to content

Commit 8eab0b5

Browse files
authored
Fixes #161
1 parent 5f819f8 commit 8eab0b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/getting_started_julia/julia_essentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ Part 2: Using a comprehension, count the number of even numbers between 0 and 99
11031103

11041104
* Hint: `iseven` returns `true` for even numbers and `false` for odds.
11051105

1106-
Part 3: Using a comprehension, take `pairs = ((2, 5), (4, 2), (9, 8), (12, 10))` and count the number of pairs `(a, b)` such that both `a` and `b` are even.
1106+
Part 3: Using a comprehension, take `my_pairs = ((2, 5), (4, 2), (9, 8), (12, 10))` and count the number of pairs `(a, b)` such that both `a` and `b` are even.
11071107

11081108
(pyess_ex2)=
11091109
### Exercise 2

0 commit comments

Comments
 (0)