From fec4315be26c87b6e4d89900c83e36e49ba54440 Mon Sep 17 00:00:00 2001 From: Onyx and Iris Date: Thu, 27 Feb 2025 20:34:49 +0000 Subject: [PATCH] typo fix --- examples/events/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/events/README.md b/examples/events/README.md index 7bf5ce9..3e8967d 100644 --- a/examples/events/README.md +++ b/examples/events/README.md @@ -2,7 +2,7 @@ If you want to receive updates on certain events there are two routes you can take: -- Register a class that implements an `on_update(self, event) -> None` method on the `{Remote}.subect` class. -- Register callback functions/methods on the `{Remote}.subect` class, one for each type of update. +- Register a class that implements an `on_update(self, event) -> None` method on the `{Remote}.subject` class. +- Register callback functions/methods on the `{Remote}.subject` class, one for each type of update. Included are examples of both approaches.