File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import RxSwift
14
14
public final class PublishRelay < Element> : ObservableType {
15
15
private let subject : PublishSubject < Element >
16
16
17
- // Accepts `event` and emits it to subscribers
17
+ /// Accepts `event` and emits it to subscribers
18
18
public func accept( _ event: Element ) {
19
19
self . subject. onNext ( event)
20
20
}
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import RxSwift
14
14
public final class ReplayRelay < Element> : ObservableType {
15
15
private let subject : ReplaySubject < Element >
16
16
17
- // Accepts `event` and emits it to subscribers
17
+ /// Accepts `event` and emits it to subscribers
18
18
public func accept( _ event: Element ) {
19
19
self . subject. onNext ( event)
20
20
}
You can’t perform that action at this time.
0 commit comments