Skip to content

Commit e1566bd

Browse files
[Inventory Management & Dicts Concept] Correct Spelling Errors (#4010)
* Update introduction.md Fixed a typo for better readability. * Updated Dicts concept about.md Made same spelling change to the concept about.md, which uses the same code examples. --------- Co-authored-by: BethanyG <[email protected]>
1 parent b3a9d9a commit e1566bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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

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

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

8686
```python
87-
# Adding an new "color" key with a new "tawney" value.
87+
# Adding a new "color" key with a new "tawney" value.
8888
>>> bear["color"] = 'tawney'
8989
{'name': 'Grizzly Bear', 'speed': 40, 'land_animal': True, 'color': 'tawney'}
9090

0 commit comments

Comments
 (0)