Skip to content

Commit faf37ab

Browse files
author
Joachim Hofer
committed
fixed javadoc descriptions in the operator
1 parent ea90264 commit faf37ab

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

rxjava-core/src/main/java/rx/operators/OperationDistinctUntilChanged.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,12 @@
3737
import rx.util.functions.Functions;
3838

3939
/**
40-
* Returns an Observable that emits the first item emitted by the source
41-
* Observable, or a default value if the source emits nothing.
40+
* Returns an Observable that emits all sequentially distinct items emitted by the source.
4241
*/
4342
public final class OperationDistinctUntilChanged {
4443

4544
/**
46-
* Returns an Observable that emits all sequentially distinct items emitted by the source
45+
* Returns an Observable that emits all sequentially distinct items emitted by the source.
4746
* @param source
4847
* The source Observable to emit the sequentially distinct items for.
4948
* @return A subscription function for creating the target Observable.
@@ -53,7 +52,7 @@ public static <T, U> OnSubscribeFunc<T> distinctUntilChanged(Observable<? extend
5352
}
5453

5554
/**
56-
* Returns an Observable that emits all sequentially distinct items emitted by the source
55+
* Returns an Observable that emits all sequentially distinct items emitted by the source.
5756
* @param source
5857
* The source Observable to emit the sequentially distinct items for.
5958
* @return A subscription function for creating the target Observable.

0 commit comments

Comments
 (0)