summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-05-21 08:47:00 +0300
committerVille Skyttä <ville.skytta@iki.fi>2016-05-21 08:47:00 +0300
commit947f78288658aa97128548d32f2d8566b5f26e18 (patch)
treefa51619a8b3da0b690b3238e46d4df8de527ecd6
parent87a9d645500c7adea0bfea34e35562fbdf176054 (diff)
downloadpython-systemd-947f78288658aa97128548d32f2d8566b5f26e18.tar.gz
Spelling fixes
-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