Skip to content

Commit

Permalink
Correct spelling mistakes (#916)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBetts committed May 14, 2024
1 parent 5feb9cf commit e83b03c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cozy/ui/preferences_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def __init__(self) -> None:
self._bind_settings()

def _bind_settings(self) -> None:
bind_settings = lambda setting, widget, propetry: self._glib_settings.bind(
setting, widget, propetry, Gio.SettingsBindFlags.DEFAULT
bind_settings = lambda setting, widget, property: self._glib_settings.bind(
setting, widget, property, Gio.SettingsBindFlags.DEFAULT
)

bind_settings("swap-author-reader", self.swap_author_reader_switch, "active")
Expand Down
2 changes: 1 addition & 1 deletion test/cozy/extensions/test_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def test_split_strings_does_nothing_for_non_seperated_element():
test = "This is a nice test. Nothing should be splitted."
test = "This is a nice test. Nothing should be split."
result = split_strings_to_set({test})

assert {test} == result
Expand Down

0 comments on commit e83b03c

Please sign in to comment.