File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -665,7 +665,7 @@ Sets are useful because they provide *set operations*, such as union
665
665
``s >= s2 `` ``__ge__ `` ``s `` in ``s2 `` (see ``.issuperset ``)
666
666
``s > s2 `` ``__gt__ `` Greater. Always ``False` ``
667
667
No hash ``__hash__ `` Set to ``None `` to ensure you can't insert in dictionary
668
- ``s &= s2 `` ``__iand__ `` Augmented (mutates ``s ``) intersection (see ``.intersection_udpate ``)
668
+ ``s &= s2 `` ``__iand__ `` Augmented (mutates ``s ``) intersection (see ``.intersection_update ``)
669
669
``s |= s2 `` ``__ior__ `` Augmented (mutates ``s ``) union (see ``.update ``)
670
670
``s -= s2 `` ``__isub__ `` Augmented (mutates ``s ``) difference (see ``.difference_update ``)
671
671
``for thing in s: `` ``__iter__ `` Iteration
You can’t perform that action at this time.
0 commit comments