Skip to content

Commit c282e05

Browse files
committed
Updates first operator docs.
1 parent 1949433 commit c282e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RxSwift/Traits/PrimitiveSequence.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ extension ObservableType {
778778

779779
- seealso: [single operator on reactivex.io](http://reactivex.io/documentation/operators/first.html)
780780

781-
- returns: An observable sequence that emits a single element or nil if the source Publisher completes without emitting any items.
781+
- returns: An observable sequence that emits a single element or nil if the source observable sequence completes without emitting any items.
782782
*/
783783
public func first() -> Single<E?> {
784784
return PrimitiveSequence(raw: First(source: self.asObservable()))

0 commit comments

Comments
 (0)