Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fire/console/console_attr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fire/custom_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'}`.

Expand Down