Common: Fix typo well -> will

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

View File

@ -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