From dcc2717ac8dcf3fc0e12b988e72b0dd89a8226d8 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 10 Aug 2022 12:37:46 -0400 Subject: [PATCH] Common: Fix typo specifed -> specified --- monkey/common/event_queue/i_event_queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/common/event_queue/i_event_queue.py b/monkey/common/event_queue/i_event_queue.py index 6abb273ad..b205b8a98 100644 --- a/monkey/common/event_queue/i_event_queue.py +++ b/monkey/common/event_queue/i_event_queue.py @@ -24,7 +24,7 @@ class IEventQueue(ABC): @abstractmethod def subscribe_type(self, event_type: Type[AbstractEvent], subscriber: EventSubscriber): """ - Subscribes a subscriber to the specifed event type + Subscribes a subscriber to the specified event type :param event_type: Event type to which the subscriber should subscribe :param subscriber: A subscriber that will receive events