@@ -3503,7 +3503,7 @@ public final Maybe<T> onErrorComplete(final Predicate<? super Throwable> predica
3503
3503
}
3504
3504
3505
3505
/**
3506
- * Instructs a Maybe to pass control to another MaybeSource rather than invoking
3506
+ * Instructs a Maybe to pass control to another {@link MaybeSource} rather than invoking
3507
3507
* {@link MaybeObserver#onError onError} if it encounters an error.
3508
3508
* <p>
3509
3509
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/onErrorResumeNext.png" alt="">
@@ -3516,7 +3516,7 @@ public final Maybe<T> onErrorComplete(final Predicate<? super Throwable> predica
3516
3516
* </dl>
3517
3517
*
3518
3518
* @param next
3519
- * the next Maybe source that will take over if the source Maybe encounters
3519
+ * the next {@code MaybeSource} that will take over if the source Maybe encounters
3520
3520
* an error
3521
3521
* @return the new Maybe instance
3522
3522
* @see <a href="http://reactivex.io/documentation/operators/catch.html">ReactiveX operators documentation: Catch</a>
@@ -4348,14 +4348,14 @@ public final Maybe<T> timeout(long timeout, TimeUnit timeUnit, Scheduler schedul
4348
4348
}
4349
4349
4350
4350
/**
4351
- * If this Maybe source didn't signal an event before the timeoutIndicator MaybeSource signals, a
4352
- * TimeoutException is signalled instead.
4351
+ * If the current {@code Maybe} didn't signal an event before the {@code timeoutIndicator} {@link MaybeSource} signals, a
4352
+ * {@link TimeoutException} is signaled instead.
4353
4353
* <dl>
4354
4354
* <dt><b>Scheduler:</b></dt>
4355
4355
* <dd>{@code timeout} does not operate by default on a particular {@link Scheduler}.</dd>
4356
4356
* </dl>
4357
4357
* @param <U> the value type of the
4358
- * @param timeoutIndicator the MaybeSource that indicates the timeout by signalling onSuccess
4358
+ * @param timeoutIndicator the {@code MaybeSource} that indicates the timeout by signaling onSuccess
4359
4359
* or onComplete.
4360
4360
* @return the new Maybe instance
4361
4361
*/
@@ -4367,17 +4367,17 @@ public final <U> Maybe<T> timeout(MaybeSource<U> timeoutIndicator) {
4367
4367
}
4368
4368
4369
4369
/**
4370
- * If the current Maybe source didn't signal an event before the timeoutIndicator MaybeSource signals,
4371
- * the current Maybe is cancelled and the {@code fallback} MaybeSource subscribed to
4370
+ * If the current {@code Maybe} didn't signal an event before the {@code timeoutIndicator} {@link MaybeSource} signals,
4371
+ * the current {@code Maybe} is cancelled and the {@code fallback} {@code MaybeSource} subscribed to
4372
4372
* as a continuation.
4373
4373
* <dl>
4374
4374
* <dt><b>Scheduler:</b></dt>
4375
4375
* <dd>{@code timeout} does not operate by default on a particular {@link Scheduler}.</dd>
4376
4376
* </dl>
4377
4377
* @param <U> the value type of the
4378
- * @param timeoutIndicator the MaybeSource that indicates the timeout by signalling onSuccess
4379
- * or onComplete.
4380
- * @param fallback the MaybeSource that is subscribed to if the current Maybe times out
4378
+ * @param timeoutIndicator the {@code MaybeSource} that indicates the timeout by signaling {@code onSuccess}
4379
+ * or {@code onComplete} .
4380
+ * @param fallback the {@code MaybeSource} that is subscribed to if the current {@code Maybe} times out
4381
4381
* @return the new Maybe instance
4382
4382
*/
4383
4383
@ CheckReturnValue
@@ -4389,8 +4389,8 @@ public final <U> Maybe<T> timeout(MaybeSource<U> timeoutIndicator, MaybeSource<?
4389
4389
}
4390
4390
4391
4391
/**
4392
- * If this Maybe source didn't signal an event before the timeoutIndicator Publisher signals, a
4393
- * TimeoutException is signalled instead.
4392
+ * If the current {@code Maybe} source didn't signal an event before the {@code timeoutIndicator} {@link Publisher} signals, a
4393
+ * {@link TimeoutException} is signaled instead.
4394
4394
* <dl>
4395
4395
* <dt><b>Backpressure:</b></dt>
4396
4396
* <dd>The {@code timeoutIndicator} {@link Publisher} is consumed in an unbounded manner and
@@ -4399,8 +4399,8 @@ public final <U> Maybe<T> timeout(MaybeSource<U> timeoutIndicator, MaybeSource<?
4399
4399
* <dd>{@code timeout} does not operate by default on a particular {@link Scheduler}.</dd>
4400
4400
* </dl>
4401
4401
* @param <U> the value type of the
4402
- * @param timeoutIndicator the MaybeSource that indicates the timeout by signalling onSuccess
4403
- * or onComplete.
4402
+ * @param timeoutIndicator the {@code MaybeSource} that indicates the timeout by signaling {@code onSuccess}
4403
+ * or {@code onComplete} .
4404
4404
* @return the new Maybe instance
4405
4405
*/
4406
4406
@ BackpressureSupport (BackpressureKind .UNBOUNDED_IN )
@@ -4412,8 +4412,8 @@ public final <U> Maybe<T> timeout(Publisher<U> timeoutIndicator) {
4412
4412
}
4413
4413
4414
4414
/**
4415
- * If the current Maybe source didn't signal an event before the timeoutIndicator Publisher signals,
4416
- * the current Maybe is cancelled and the {@code fallback} MaybeSource subscribed to
4415
+ * If the current {@code Maybe} didn't signal an event before the {@code timeoutIndicator} {@link Publisher} signals,
4416
+ * the current {@code Maybe} is cancelled and the {@code fallback} {@code MaybeSource} subscribed to
4417
4417
* as a continuation.
4418
4418
* <dl>
4419
4419
* <dt><b>Backpressure:</b></dt>
@@ -4423,9 +4423,9 @@ public final <U> Maybe<T> timeout(Publisher<U> timeoutIndicator) {
4423
4423
* <dd>{@code timeout} does not operate by default on a particular {@link Scheduler}.</dd>
4424
4424
* </dl>
4425
4425
* @param <U> the value type of the
4426
- * @param timeoutIndicator the MaybeSource that indicates the timeout by signalling onSuccess
4427
- * or onComplete
4428
- * @param fallback the MaybeSource that is subscribed to if the current Maybe times out
4426
+ * @param timeoutIndicator the {@code MaybeSource} that indicates the timeout by signaling {@code onSuccess}
4427
+ * or {@code onComplete}
4428
+ * @param fallback the {@code MaybeSource} that is subscribed to if the current {@code Maybe} times out
4429
4429
* @return the new Maybe instance
4430
4430
*/
4431
4431
@ BackpressureSupport (BackpressureKind .UNBOUNDED_IN )
0 commit comments