Skip to content

Commit 98be864

Browse files
committed
Fix typo in dict-methods concept
1 parent 1073617 commit 98be864

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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),

0 commit comments

Comments
 (0)