Skip to content

Commit

Permalink
chore: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
yktoo committed Jun 8, 2021
1 parent 50f9ae2 commit 9e2d9ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/indicator_sound_switcher/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def bind_keys(self, config: Config):

def shutdown(self):
"""Remove all keyboard bindings."""
logging.debug('KeybordManager.shutdown()')
logging.debug('KeyboardManager.shutdown()')
for shortcut in self.current_mappings.keys():
Keybinder.unbind(shortcut)
logging.debug(' - Unbound keyboard shortcut `%s`', shortcut)
Expand Down
2 changes: 1 addition & 1 deletion lib/indicator_sound_switcher/indicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,7 @@ def shutdown(self):

def synchronise_op(self, name: str, operation):
"""Turn an asynchronous PulseAudio operation into a synchronous one by waiting on the operation to complete.
Finally unreference the operation object.
Finally dereference the operation object.
:param name: operation name for logging purposes
:param operation: PulseAudio operation to execute
"""
Expand Down
2 changes: 1 addition & 1 deletion lib/indicator_sound_switcher/port.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(
"""Constructor.
:param name: (Internal) name of the port
:param description: Default 'human friendly' name of the port
:param display_name: Port display name overriden by user. If empty, description is to be used
:param display_name: Port display name overridden by user. If empty, description is to be used
:param priority: Port priority as reported by PulseAudio
:param is_available: Whether the port is available for the user
:param is_visible: Whether the port is visible for the user
Expand Down

0 comments on commit 9e2d9ca

Please sign in to comment.