Skip to content

Commit

Permalink
Fixed javadoc for Observable.repeat() method
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Romanchuk committed Mar 18, 2015
1 parent 334a333 commit 489236d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -5610,7 +5610,7 @@ public final <R> Observable<R> reduce(R initialValue, Func2<R, ? super T, R> acc
* </dl>
*
* @return an Observable that emits the items emitted by the source Observable repeatedly and in sequence
* @see <a href="http://reactivex.io/documentation/operators/repeat.html">ReactiveX operators documentation: Repeahttp://reactivex.io/documentation/operators/create.htmlt</a>
* @see <a href="http://reactivex.io/documentation/operators/repeat.html">ReactiveX operators documentation: Repeat</a>
*/
public final Observable<T> repeat() {
return OnSubscribeRedo.<T>repeat(this);
Expand Down

0 comments on commit 489236d

Please sign in to comment.