Skip to content

Commit eb04b9a

Browse files
authored
Merge pull request #1028 from knarrff/char_to_letter
Avoid the variable name 'char'
2 parents 0eeef2f + b5330cb commit eb04b9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_episodes/05-loop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,8 @@ so we should always use it when we can.
307307
> Given the following loop:
308308
> ~~~
309309
> word = 'oxygen'
310-
> for char in word:
311-
> print(char)
310+
> for letter in word:
311+
> print(letter)
312312
> ~~~
313313
> {: .language-python}
314314
>

0 commit comments

Comments
 (0)