Skip to content

Commit

Permalink
Corrected misspelling typo of “which” under OrderedSet __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
wDushanin authored Jan 14, 2025
1 parent d67f5cd commit c93d303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wntr/utils/ordered_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, iterable=None):
Parameters
----------
iterable: Iterable
An iterable with wich to initialize the set.
An iterable with which to initialize the set.
"""
self._data = OrderedDict()
if iterable is not None:
Expand Down

0 comments on commit c93d303

Please sign in to comment.