Skip to content

Commit 2977c37

Browse files
committed
Updated Dicts concept about.md
Made same spelling change to the concept about.md, which uses the same code examples.
1 parent da23c8e commit 2977c37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/dicts/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ You can change an entry `value` by assigning to its _key_:
172172
New `key`:`value` pairs can be _added_ in the same fashion:
173173

174174
```python
175-
# Adding an new "color" key with a new "tawney" value.
175+
# Adding a new "color" key with a new "tawney" value.
176176
>>> bear["color"] = 'tawney'
177177
{'name': 'Grizzly Bear', 'speed': 40, 'land_animal': True, 'color': 'tawney'}
178178

0 commit comments

Comments
 (0)