Skip to content

Commit 57fb824

Browse files
committed
Fix typo in the "For what?" example
1 parent 753d0b6 commit 57fb824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1495,7 +1495,7 @@ for i, some_dict[i] in enumerate(some_string):
14951495
**Outuput:**
14961496
```py
14971497
>>> some_dict # An indexed dict is created.
1498-
{0: 'w', 1: 'f', 2: 'f'}
1498+
{0: 'w', 1: 't', 2: 'f'}
14991499
```
15001500

15011501
#### 💡 Explanation:

0 commit comments

Comments
 (0)