Skip to content

Commit 6a7a351

Browse files
authored
[Mecha Munch & Dict Methods Concept]: Fix Typo in Introduction & About Files (#3796)
* Fix typo in dict methods introduction * Fix typo in dict-methods concept
1 parent 83e71ed commit 6a7a351

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

concepts/dict-methods/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ When both dictionaries share keys, `dict_two` values take precedence.
214214
'Purple baseline': '#161748'}
215215
```
216216

217-
`dict_one |= other` behaves similar to `<dict_one>.update(<dict_two>)`, but in this case, `other` can be either a `dict` or an iterable of (`key`, `value`) pairs:
217+
`dict_one |= other` behaves similar to `<dict_one>.update(<other>)`, but in this case, `other` can be either a `dict` or an iterable of (`key`, `value`) pairs:
218218

219219
```python
220220
>>> palette_III = {'Grassy Green': (155, 196, 0),

exercises/concept/mecha-munch-management/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ When both dictionaries share keys, `dict_two` values take precedence.
191191
'Purple baseline': '#161748'}
192192
```
193193

194-
`dict_one |= other` behaves similar to `<dict_one>.update(<dict_two>)`, but in this case, `other` can be either a `dict` or an iterable of (`key`, `value`) pairs:
194+
`dict_one |= other` behaves similar to `<dict_one>.update(<other>)`, but in this case, `other` can be either a `dict` or an iterable of (`key`, `value`) pairs:
195195

196196
```python
197197
>>> palette_III = {'Grassy Green': (155, 196, 0),

0 commit comments

Comments
 (0)