Skip to content

Commit 435a5bf

Browse files
committed
Typo corrected in a comment
EventDispatcher had a small typo in a code comment.
1 parent 48cdd12 commit 435a5bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/EventDrivenSwift/EventDispatcher/EventDispatcher.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ open class EventDispatcher: EventHandler, EventDispatching {
5454

5555
_receivers.withLock { receivers in
5656
var bucket = receivers[eventTypeName]
57-
if bucket == nil { return } /// Can't remove a Receiver if there isn't even a Bucket for hte Event Type
57+
if bucket == nil { return } /// Can't remove a Receiver if there isn't even a Bucket for the Event Type
5858

5959
/// Remove any Receivers from this Event-Type Bucket for the given `receiver` instance.
6060
bucket!.removeAll { receiverContainer in

0 commit comments

Comments
 (0)