From e995446cfcb2c1557dce7e56eee0aa85a1792455 Mon Sep 17 00:00:00 2001 From: Tero Paloheimo Date: Sat, 30 Dec 2023 20:01:40 +0200 Subject: [PATCH] Fix some typos --- safeeyes/plugins/healthstats/plugin.py | 2 +- safeeyes/plugins/notification/plugin.py | 2 +- safeeyes/rpc.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/safeeyes/plugins/healthstats/plugin.py b/safeeyes/plugins/healthstats/plugin.py index e1cae38..126c1c8 100644 --- a/safeeyes/plugins/healthstats/plugin.py +++ b/safeeyes/plugins/healthstats/plugin.py @@ -78,7 +78,7 @@ def on_start_break(break_obj): global session session['breaks'] += 1 - # Screen time has stoped. + # Screen time has stopped. on_stop() diff --git a/safeeyes/plugins/notification/plugin.py b/safeeyes/plugins/notification/plugin.py index ed4a0e8..b7920fb 100644 --- a/safeeyes/plugins/notification/plugin.py +++ b/safeeyes/plugins/notification/plugin.py @@ -84,7 +84,7 @@ def on_start_break(break_obj): def on_exit(): """ - Uninitialize the registered notificaion. + Uninitialize the registered notification. """ logging.debug('Stop Notification plugin') Notify.uninit() diff --git a/safeeyes/rpc.py b/safeeyes/rpc.py index ebb3686..abe3629 100644 --- a/safeeyes/rpc.py +++ b/safeeyes/rpc.py @@ -28,7 +28,7 @@ from xmlrpc.client import ServerProxy class RPCServer: """ - An aynchronous RPC server. + An asynchronous RPC server. """ def __init__(self, port, context): self.__running = False