Fix typo (#142)
This commit is contained in:
parent
31b8ea5ea1
commit
f80abf6578
|
@ -96,7 +96,7 @@ sets.insert(<a href="#sets.insert-s">s</a>, <a href="#sets.insert-e">e</a>)
|
|||
|
||||
Inserts an element into the set.
|
||||
|
||||
Element must be hashable. This mutates the orginal set.
|
||||
Element must be hashable. This mutates the original set.
|
||||
|
||||
|
||||
### Parameters
|
||||
|
@ -426,7 +426,7 @@ sets.remove(<a href="#sets.remove-s">s</a>, <a href="#sets.remove-e">e</a>)
|
|||
|
||||
Removes an element from the set.
|
||||
|
||||
Element must be hashable. This mutates the orginal set.
|
||||
Element must be hashable. This mutates the original set.
|
||||
|
||||
|
||||
### Parameters
|
||||
|
|
|
@ -61,7 +61,7 @@ def _to_list(s):
|
|||
def _insert(s, e):
|
||||
"""Inserts an element into the set.
|
||||
|
||||
Element must be hashable. This mutates the orginal set.
|
||||
Element must be hashable. This mutates the original set.
|
||||
|
||||
Args:
|
||||
s: A set, as returned by `sets.make()`.
|
||||
|
@ -76,7 +76,7 @@ def _insert(s, e):
|
|||
def _remove(s, e):
|
||||
"""Removes an element from the set.
|
||||
|
||||
Element must be hashable. This mutates the orginal set.
|
||||
Element must be hashable. This mutates the original set.
|
||||
|
||||
Args:
|
||||
s: A set, as returned by `sets.make()`.
|
||||
|
|
Loading…
Reference in New Issue