diff --git a/README.md b/README.md index bcb504e..b22b593 100644 --- a/README.md +++ b/README.md @@ -100,11 +100,6 @@ Set |= ``` -```python -.remove() # Throws error. -.discard() # Doesn't throw error. -``` - ```python = .union() # Or: | = .intersection() # Or: & @@ -114,6 +109,11 @@ Set = .issuperset() # Or: >= ``` +```python +.remove() # Throws error. +.discard() # Doesn't throw error. +``` + ### Frozenset #### Is hashable and can be used as a key in dictionary. ```python