Skip to content

Commit cf0f7c0

Browse files
authored
remove extra space (#3749)
an extra space made the markdown fail displaying _keys_ in italics
1 parent 2043712 commit cf0f7c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/inventory-management/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ KeyError: 'name'
120120

121121
## Looping through/Iterating over a Dictionary
122122

123-
Looping through a dictionary using `for item in dict` or `while item` will iterate over only the _keys _ by default.
123+
Looping through a dictionary using `for item in dict` or `while item` will iterate over only the _keys_ by default.
124124
You can access the _values_ within the same loop by using _square brackets_:
125125

126126
```python

0 commit comments

Comments
 (0)