summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--systemd/test/test_daemon.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 69d564d..2e0c9aa 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@ python-systemd
===============
Python module for native access to the systemd facilities. Functionality
-is seperated into a number of modules:
+is separated into a number of modules:
- systemd.journal supports sending of structured messages to the journal
and reading journal files,
- systemd.daemon wraps parts of libsystemd useful for writing daemons
diff --git a/systemd/test/test_daemon.py b/systemd/test/test_daemon.py
index 8c776d5..215f1f8 100644
--- a/systemd/test/test_daemon.py
+++ b/systemd/test/test_daemon.py
@@ -95,7 +95,7 @@ def is_mq_wrapper(arg):
try:
return is_mq(arg)
except OSError as error:
- # systemd < 227 compatiblity
+ # systemd < 227 compatibility
assert error.errno == errno.EBADF
return False
@@ -103,7 +103,7 @@ def _is_mq_wrapper(arg):
try:
return _is_mq(arg)
except OSError as error:
- # systemd < 227 compatiblity
+ # systemd < 227 compatibility
assert error.errno == errno.EBADF
return False