@@ -318,7 +318,7 @@ public static Scheduler single() {
318
318
* calls to it.
319
319
* <p>
320
320
* If the provided executor doesn't support any of the more specific standard Java executor
321
- * APIs, cancelling tasks scheduled by this scheduler can't be interrupted when they are
321
+ * APIs, tasks scheduled by this scheduler can't be interrupted when they are
322
322
* executing but only prevented from running prior to that. In addition, tasks scheduled with
323
323
* a time delay or periodically will use the {@link #single()} scheduler for the timed waiting
324
324
* before posting the actual task to the given executor.
@@ -327,13 +327,13 @@ public static Scheduler single() {
327
327
* {@link #from(Executor, boolean)} overload to enable task interruption via this wrapper.
328
328
* <p>
329
329
* If the provided executor supports the standard Java {@link ExecutorService} API,
330
- * cancelling tasks scheduled by this scheduler can be cancelled/interrupted by calling
330
+ * tasks scheduled by this scheduler can be cancelled/interrupted by calling
331
331
* {@link io.reactivex.rxjava3.disposables.Disposable#dispose()}. In addition, tasks scheduled with
332
332
* a time delay or periodically will use the {@link #single()} scheduler for the timed waiting
333
333
* before posting the actual task to the given executor.
334
334
* <p>
335
335
* If the provided executor supports the standard Java {@link ScheduledExecutorService} API,
336
- * cancelling tasks scheduled by this scheduler can be cancelled/interrupted by calling
336
+ * tasks scheduled by this scheduler can be cancelled/interrupted by calling
337
337
* {@link io.reactivex.rxjava3.disposables.Disposable#dispose()}. In addition, tasks scheduled with
338
338
* a time delay or periodically will use the provided executor. Note, however, if the provided
339
339
* {@code ScheduledExecutorService} instance is not single threaded, tasks scheduled
@@ -405,13 +405,13 @@ public static Scheduler from(@NonNull Executor executor) {
405
405
* before posting the actual task to the given executor.
406
406
* <p>
407
407
* If the provided executor supports the standard Java {@link ExecutorService} API,
408
- * canceling tasks scheduled by this scheduler can be cancelled/interrupted by calling
408
+ * tasks scheduled by this scheduler can be cancelled/interrupted by calling
409
409
* {@link io.reactivex.rxjava3.disposables.Disposable#dispose()}. In addition, tasks scheduled with
410
410
* a time delay or periodically will use the {@link #single()} scheduler for the timed waiting
411
411
* before posting the actual task to the given executor.
412
412
* <p>
413
413
* If the provided executor supports the standard Java {@link ScheduledExecutorService} API,
414
- * canceling tasks scheduled by this scheduler can be cancelled/interrupted by calling
414
+ * tasks scheduled by this scheduler can be cancelled/interrupted by calling
415
415
* {@link io.reactivex.rxjava3.disposables.Disposable#dispose()}. In addition, tasks scheduled with
416
416
* a time delay or periodically will use the provided executor. Note, however, if the provided
417
417
* {@code ScheduledExecutorService} instance is not single threaded, tasks scheduled
@@ -487,13 +487,13 @@ public static Scheduler from(@NonNull Executor executor, boolean interruptibleWo
487
487
* before posting the actual task to the given executor.
488
488
* <p>
489
489
* If the provided executor supports the standard Java {@link ExecutorService} API,
490
- * canceling tasks scheduled by this scheduler can be cancelled/interrupted by calling
490
+ * tasks scheduled by this scheduler can be cancelled/interrupted by calling
491
491
* {@link io.reactivex.rxjava3.disposables.Disposable#dispose()}. In addition, tasks scheduled with
492
492
* a time delay or periodically will use the {@link #single()} scheduler for the timed waiting
493
493
* before posting the actual task to the given executor.
494
494
* <p>
495
495
* If the provided executor supports the standard Java {@link ScheduledExecutorService} API,
496
- * canceling tasks scheduled by this scheduler can be cancelled/interrupted by calling
496
+ * tasks scheduled by this scheduler can be cancelled/interrupted by calling
497
497
* {@link io.reactivex.rxjava3.disposables.Disposable#dispose()}. In addition, tasks scheduled with
498
498
* a time delay or periodically will use the provided executor. Note, however, if the provided
499
499
* {@code ScheduledExecutorService} instance is not single threaded, tasks scheduled
0 commit comments