We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79bed6c commit 7372a25Copy full SHA for 7372a25
stdlib/public/Darwin/Foundation/Publishers+Timer.swift
@@ -126,7 +126,7 @@ extension Timer {
126
lock.cleanupLock()
127
}
128
129
- func addSubsriber<S: Subscriber>(_ sub: S)
+ func addSubscriber<S: Subscriber>(_ sub: S)
130
where
131
S.Failure == Failure,
132
S.Input == Output
@@ -195,7 +195,7 @@ extension Timer {
195
196
197
public func receive<S: Subscriber>(subscriber: S) where Failure == S.Failure, Output == S.Input {
198
- routingSubscription.addSubsriber(subscriber)
+ routingSubscription.addSubscriber(subscriber)
199
200
201
public func connect() -> Cancellable {
0 commit comments