Skip to content

Commit 0f7890e

Browse files
committed
minor javadoc formatting fix
1 parent bc84882 commit 0f7890e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/rx/Observable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5722,7 +5722,7 @@ public final Observable<T> repeat(final long count, Scheduler scheduler) {
57225722
/**
57235723
* Returns an Observable that emits the same values as the source Observable with the exception of an
57245724
* {@code onCompleted}. An {@code onCompleted} notification from the source will result in the emission of
5725-
* a {@link void} item to the Observable provided as an argument to the {@code notificationHandler}
5725+
* a {@code void} item to the Observable provided as an argument to the {@code notificationHandler}
57265726
* function. If that Observable calls {@code onComplete} or {@code onError} then {@code repeatWhen} will
57275727
* call {@code onCompleted} or {@code onError} on the child subscription. Otherwise, this Observable will
57285728
* resubscribe to the source Observable, on a particular Scheduler.
@@ -5759,7 +5759,7 @@ public Void call(Notification<?> notification) {
57595759
/**
57605760
* Returns an Observable that emits the same values as the source Observable with the exception of an
57615761
* {@code onCompleted}. An {@code onCompleted} notification from the source will result in the emission of
5762-
* a {@link void} item to the Observable provided as an argument to the {@code notificationHandler}
5762+
* a {@code void} item to the Observable provided as an argument to the {@code notificationHandler}
57635763
* function. If that Observable calls {@code onComplete} or {@code onError} then {@code repeatWhen} will
57645764
* call {@code onCompleted} or {@code onError} on the child subscription. Otherwise, this Observable will
57655765
* resubscribe to the source observable.

0 commit comments

Comments
 (0)