Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix misspellings #98

Merged
merged 1 commit into from
Sep 26, 2023
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 README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ This library exports the exception type DbusClientError and all its subtypes.
It constitutes a bug if an error of any other type is propagated during class
generation or when the methods of the class are executed.

The following shows the error heirarchy. Entries after the dash indicate
The following shows the error hierarchy. Entries after the dash indicate
additional fields beyond the message which the exception contains. Only leaves
of the error class heirarchy are constructed directly.
of the error class hierarchy are constructed directly.


DbusClientError
Expand Down
2 changes: 1 addition & 1 deletion src/dbus_client_gen/_managed_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def builder(namespace):

def __init__(self, table):
"""
The initalizer for this class.
The initializer for this class.

:raises: DbusClientMissingInterfaceError
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_deterministic.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_malformed_data(self):

def test_unique_match(self):
"""
Test succesful unique match.
Test successful unique match.
"""
query = GMOQuery(
"interface_name", {"prop_name": "prop_value"}
Expand Down