@@ -2382,7 +2382,7 @@ public final static <T extends Comparable<? super T>> Observable<T> min(Observab
23822382 }
23832383
23842384 /**
2385- * Convert the current Observable<T> into an Observable<Observable<T>>.
2385+ * Convert the current {@code Observable<T>} into an {@code Observable<Observable<T>>} .
23862386 * <p>
23872387 * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/nest.png">
23882388 *
@@ -3403,7 +3403,7 @@ public final static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R> Observable<R> zip(Ob
34033403 *
34043404 * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#wiki-reduce">RxJava Wiki: reduce()</a>
34053405 * @see #reduce(Func2)
3406- * @deprecated use #reduce(Func2)
3406+ * @deprecated use {@link #reduce(Func2)}
34073407 */
34083408 @ Deprecated
34093409 public final Observable <T > aggregate (Func2 <T , T , T > accumulator ) {
@@ -3417,7 +3417,7 @@ public final Observable<T> aggregate(Func2<T, T, T> accumulator) {
34173417 *
34183418 * @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#wiki-reduce">RxJava Wiki: reduce()</a>
34193419 * @see #reduce(Object, Func2)
3420- * @deprecated use #reduce(Object, Func2)
3420+ * @deprecated use {@link #reduce(Object, Func2)}
34213421 */
34223422 @ Deprecated
34233423 public final <R > Observable <R > aggregate (R initialValue , Func2 <R , ? super T , R > accumulator ) {
@@ -4044,7 +4044,7 @@ public final Observable<T> defaultIfEmpty(T defaultValue) {
40444044 * <p>
40454045 * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/delay.oo.png">
40464046 * <p>
4047- * <em>Note:</code > the resulting Observable will immediately propagate any {@code onError} notification
4047+ * <em>Note:</em > the resulting Observable will immediately propagate any {@code onError} notification
40484048 * from the source Observable.
40494049 *
40504050 * @param <U>
0 commit comments