Common: Fix typo specifed -> specified

This commit is contained in:
Mike Salvatore 2022-08-10 12:37:46 -04:00
parent b1c77b7be8
commit dcc2717ac8
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class IEventQueue(ABC):
@abstractmethod @abstractmethod
def subscribe_type(self, event_type: Type[AbstractEvent], subscriber: EventSubscriber): 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 event_type: Event type to which the subscriber should subscribe
:param subscriber: A subscriber that will receive events :param subscriber: A subscriber that will receive events