Skip to content

Commit 947f782

Browse files
committed
Spelling fixes
1 parent 87a9d64 commit 947f782

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ python-systemd
22
===============
33

44
Python module for native access to the systemd facilities. Functionality
5-
is seperated into a number of modules:
5+
is separated into a number of modules:
66
- systemd.journal supports sending of structured messages to the journal
77
and reading journal files,
88
- systemd.daemon wraps parts of libsystemd useful for writing daemons

systemd/test/test_daemon.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ def is_mq_wrapper(arg):
9595
try:
9696
return is_mq(arg)
9797
except OSError as error:
98-
# systemd < 227 compatiblity
98+
# systemd < 227 compatibility
9999
assert error.errno == errno.EBADF
100100
return False
101101

102102
def _is_mq_wrapper(arg):
103103
try:
104104
return _is_mq(arg)
105105
except OSError as error:
106-
# systemd < 227 compatiblity
106+
# systemd < 227 compatibility
107107
assert error.errno == errno.EBADF
108108
return False
109109

0 commit comments

Comments
 (0)