Skip to content

Commit 9580123

Browse files
committed
Fix comments in withLatest(from:)
1 parent 95bd754 commit 9580123

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Sources/Signal.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ extension SignalProtocol {
10301030
/// nothing happens.
10311031
///
10321032
/// - parameters:
1033-
/// - samplee: A signal that its latest value is sampled by `self`.
1033+
/// - samplee: A signal whose latest value is sampled by `self`.
10341034
///
10351035
/// - returns: A signal that will send values from `self` and `samplee`,
10361036
/// sampled (possibly multiple times) by `self`, then terminate
@@ -1073,7 +1073,7 @@ extension SignalProtocol {
10731073
/// nothing happens.
10741074
///
10751075
/// - parameters:
1076-
/// - samplee: A producer that its latest value is sampled by `self`.
1076+
/// - samplee: A producer whose latest value is sampled by `self`.
10771077
///
10781078
/// - returns: A signal that will send values from `self` and `samplee`,
10791079
/// sampled (possibly multiple times) by `self`, then terminate

Sources/SignalProducer.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ extension SignalProducerProtocol {
821821
/// nothing happens.
822822
///
823823
/// - parameters:
824-
/// - samplee: A producer that its latest value is sampled by `self`.
824+
/// - samplee: A producer whose latest value is sampled by `self`.
825825
///
826826
/// - returns: A signal that will send values from `self` and `samplee`,
827827
/// sampled (possibly multiple times) by `self`, then terminate
@@ -840,7 +840,7 @@ extension SignalProducerProtocol {
840840
/// nothing happens.
841841
///
842842
/// - parameters:
843-
/// - samplee: A signal that its latest value is sampled by `self`.
843+
/// - samplee: A signal whose latest value is sampled by `self`.
844844
///
845845
/// - returns: A signal that will send values from `self` and `samplee`,
846846
/// sampled (possibly multiple times) by `self`, then terminate

0 commit comments

Comments
 (0)