diff --git a/strings/min_window_substring.py b/strings/min_window_substring.py index c2bdf58ef..f7985654f 100644 --- a/strings/min_window_substring.py +++ b/strings/min_window_substring.py @@ -19,7 +19,7 @@ def min_window(search_str: str, target_letters: str) -> str: in search_str. Space complexity: O(search_len) -> - The primary contributer to additional space is the building of a + The primary contributor to additional space is the building of a dictionary using the search string. """