Skip to content

Commit 12cccb1

Browse files
committed
Merge branch 'master' into rxswift4.0-swift4.0
2 parents bb83428 + f1ac19a commit 12cccb1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Documentation/GettingStarted.md

+3
Original file line numberDiff line numberDiff line change
@@ -911,6 +911,8 @@ _ = variable.asObservable()
911911
print("Completed 2")
912912
})
913913

914+
print("Before send 2")
915+
914916
variable.value = 2
915917

916918
print("End ---")
@@ -925,6 +927,7 @@ Before send 1
925927
First 1
926928
Before second subscription ---
927929
Second 1
930+
Before send 2
928931
First 2
929932
Second 2
930933
End ---

RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ extension SharedSequenceConvertibleType {
443443
}
444444

445445
/**
446-
Merges two observable sequences into one observable sequence by using latest element from the second sequence every time when `self` emitts an element.
446+
Merges two observable sequences into one observable sequence by using latest element from the second sequence every time when `self` emits an element.
447447

448448
- parameter second: Second observable source.
449449
- returns: An observable sequence containing the result of combining each element of the self with the latest element from the second source, if any, using the specified result selector function.

RxSwift/Observables/WithLatestFrom.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ extension ObservableType {
2222
}
2323

2424
/**
25-
Merges two observable sequences into one observable sequence by using latest element from the second sequence every time when `self` emitts an element.
25+
Merges two observable sequences into one observable sequence by using latest element from the second sequence every time when `self` emits an element.
2626

2727
- seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html)
2828

0 commit comments

Comments
 (0)