From b1c77b7be8538117fb3b1f3496d132f03c6a8497 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 10 Aug 2022 12:37:25 -0400 Subject: [PATCH] Common: Fix typo well -> will --- monkey/common/event_queue/i_event_queue.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/monkey/common/event_queue/i_event_queue.py b/monkey/common/event_queue/i_event_queue.py index f13b0d4b8..6abb273ad 100644 --- a/monkey/common/event_queue/i_event_queue.py +++ b/monkey/common/event_queue/i_event_queue.py @@ -16,7 +16,7 @@ class IEventQueue(ABC): """ Subscribes a subscriber to all events - :param subscriber: A subscriber that well receive events + :param subscriber: A subscriber that will receive events """ pass @@ -27,7 +27,7 @@ class IEventQueue(ABC): Subscribes a subscriber to the specifed event type :param event_type: Event type to which the subscriber should subscribe - :param subscriber: A subscriber that well receive events + :param subscriber: A subscriber that will receive events """ pass @@ -38,7 +38,7 @@ class IEventQueue(ABC): Subscribes a subscriber to the specified event tag :param tag: Event tag to which the subscriber should subscribe - :param subscriber: A subscriber that well receive events + :param subscriber: A subscriber that will receive events """ pass