diff --git a/fire/console/console_attr.py b/fire/console/console_attr.py index 35c10fba..f88d5788 100644 --- a/fire/console/console_attr.py +++ b/fire/console/console_attr.py @@ -288,7 +288,7 @@ def __init__(self, encoding=None, suppress_output=False): elif self._encoding == 'cp437' and not is_screen_reader: self._box_line_characters = BoxLineCharactersUnicode() self._bullets = self._BULLETS_WINDOWS - # Windows does not suport the unicode characters used for the spinner. + # Windows does not support the unicode characters used for the spinner. self._progress_tracker_symbols = ProgressTrackerSymbolsAscii() else: self._box_line_characters = BoxLineCharactersAscii() @@ -456,7 +456,7 @@ def GetRawKey(self): return self._get_raw_key[0]() def GetTermIdentifier(self): - """Returns the TERM envrionment variable for the console. + """Returns the TERM environment variable for the console. Returns: str: A str that describes the console's text capabilities diff --git a/fire/custom_descriptions.py b/fire/custom_descriptions.py index 865a528e..266671f1 100644 --- a/fire/custom_descriptions.py +++ b/fire/custom_descriptions.py @@ -28,7 +28,7 @@ dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2) -As you can see, this docstring is more pertinant to the function `dict` and +As you can see, this docstring is more pertinent to the function `dict` and would be suitable as the result of `dict.__doc__`, but is wholely unsuitable as a description for the dict `{'key': 'value'}`.