Skip to content

Commit

Permalink
fixed javadoc descriptions in the operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Joachim Hofer committed Sep 12, 2013
1 parent ea90264 commit faf37ab
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,12 @@
import rx.util.functions.Functions;

/**
* Returns an Observable that emits the first item emitted by the source
* Observable, or a default value if the source emits nothing.
* Returns an Observable that emits all sequentially distinct items emitted by the source.
*/
public final class OperationDistinctUntilChanged {

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

/**
* Returns an Observable that emits all sequentially distinct items emitted by the source
* Returns an Observable that emits all sequentially distinct items emitted by the source.
* @param source
* The source Observable to emit the sequentially distinct items for.
* @return A subscription function for creating the target Observable.
Expand Down

0 comments on commit faf37ab

Please sign in to comment.