[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 <BethanyG@users.noreply.github.com>
This commit is contained in:
Abdelrahman Ali
2025-10-12 20:12:13 +03:00
committed by GitHub
parent b3a9d9a35f
commit e1566bdff1
2 changed files with 2 additions and 2 deletions

View File

@@ -172,7 +172,7 @@ You can change an entry `value` by assigning to its _key_:
New `key`:`value` pairs can be _added_ in the same fashion:
```python
# Adding an new "color" key with a new "tawney" value.
# Adding a new "color" key with a new "tawney" value.
>>> bear["color"] = 'tawney'
{'name': 'Grizzly Bear', 'speed': 40, 'land_animal': True, 'color': 'tawney'}

View File

@@ -84,7 +84,7 @@ You can change an entry `value` by assigning to its _key_:
New `key`:`value` pairs can be _added_ in the same fashion:
```python
# Adding an new "color" key with a new "tawney" value.
# Adding a new "color" key with a new "tawney" value.
>>> bear["color"] = 'tawney'
{'name': 'Grizzly Bear', 'speed': 40, 'land_animal': True, 'color': 'tawney'}