Skip to content

Commit e34801a

Browse files
committed
Update concepts/dict-methods/about.md
1 parent f14140c commit e34801a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

concepts/dict-methods/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ While `dict` does not have a built-in sorting method, it is possible to sort a d
220220

221221
```
222222

223-
Swapping keys and values reliably in a dictionary takes a little more work, but can be efferently accomplished via a loop using `dict.items()`. However, if values are not unique, extra checks are required. Both methods assume that `dict` keys and values are _hashable_.
223+
Swapping keys and values reliably in a dictionary takes a little more work, but can be accomplished via a loop using `dict.items()`. But if the values stored in the `dict` are not unique, extra checks are required. Both methods assume that `dict` keys and values are _hashable_.
224224

225225
```python
226226

0 commit comments

Comments
 (0)