@@ -1391,7 +1391,7 @@ public static int bufferSize() {
13911391 * <dt><b>Error handling:</b></dt>
13921392 * <dd> If the {@code Action} throws an exception, the respective {@link Throwable} is
13931393 * delivered to the downstream via {@link Observer#onError(Throwable)},
1394- * except when the downstream has canceled the resulting {@code Observable} source.
1394+ * except when the downstream has cancelled the resulting {@code Observable} source.
13951395 * In this latter case, the {@code Throwable} is delivered to the global error handler via
13961396 * {@link RxJavaPlugins#onError(Throwable)} as an {@link io.reactivex.rxjava4.exceptions.UndeliverableException UndeliverableException}.
13971397 * </dd>
@@ -1688,7 +1688,7 @@ public static int bufferSize() {
16881688 * <dt><b>Error handling:</b></dt>
16891689 * <dd> If the {@code Runnable} throws an exception, the respective {@code Throwable} is
16901690 * delivered to the downstream via {@link Observer#onError(Throwable)},
1691- * except when the downstream has canceled the resulting {@code Observable} source.
1691+ * except when the downstream has cancelled the resulting {@code Observable} source.
16921692 * In this latter case, the {@code Throwable} is delivered to the global error handler via
16931693 * {@link RxJavaPlugins#onError(Throwable)} as an {@link io.reactivex.rxjava4.exceptions.UndeliverableException UndeliverableException}.
16941694 * </dd>
@@ -15923,7 +15923,7 @@ public final TestObserver<T> test(boolean dispose) { // NoPMD
1592315923 * <p>
1592415924 * <img width="640" height="313" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/firstStage.o.png" alt="">
1592515925 * <p>
15926- * The upstream can be canceled by converting the resulting {@code CompletionStage} into
15926+ * The upstream can be cancelled by converting the resulting {@code CompletionStage} into
1592715927 * {@link CompletableFuture} via {@link CompletionStage#toCompletableFuture()} and
1592815928 * calling {@link CompletableFuture#cancel(boolean)} on it.
1592915929 * The upstream will be also cancelled if the resulting {@code CompletionStage} is converted to and
@@ -15958,7 +15958,7 @@ public final CompletionStage<T> firstStage(@Nullable T defaultItem) {
1595815958 * <p>
1595915959 * <img width="640" height="227" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/singleStage.o.png" alt="">
1596015960 * <p>
15961- * The upstream can be canceled by converting the resulting {@code CompletionStage} into
15961+ * The upstream can be cancelled by converting the resulting {@code CompletionStage} into
1596215962 * {@link CompletableFuture} via {@link CompletionStage#toCompletableFuture()} and
1596315963 * calling {@link CompletableFuture#cancel(boolean)} on it.
1596415964 * The upstream will be also cancelled if the resulting {@code CompletionStage} is converted to and
@@ -15992,7 +15992,7 @@ public final CompletionStage<T> singleStage(@Nullable T defaultItem) {
1599215992 * <p>
1599315993 * <img width="640" height="313" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/lastStage.o.png" alt="">
1599415994 * <p>
15995- * The upstream can be canceled by converting the resulting {@code CompletionStage} into
15995+ * The upstream can be cancelled by converting the resulting {@code CompletionStage} into
1599615996 * {@link CompletableFuture} via {@link CompletionStage#toCompletableFuture()} and
1599715997 * calling {@link CompletableFuture#cancel(boolean)} on it.
1599815998 * The upstream will be also cancelled if the resulting {@code CompletionStage} is converted to and
@@ -16026,7 +16026,7 @@ public final CompletionStage<T> lastStage(@Nullable T defaultItem) {
1602616026 * <p>
1602716027 * <img width="640" height="341" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/firstOrErrorStage.o.png" alt="">
1602816028 * <p>
16029- * The upstream can be canceled by converting the resulting {@code CompletionStage} into
16029+ * The upstream can be cancelled by converting the resulting {@code CompletionStage} into
1603016030 * {@link CompletableFuture} via {@link CompletionStage#toCompletableFuture()} and
1603116031 * calling {@link CompletableFuture#cancel(boolean)} on it.
1603216032 * The upstream will be also cancelled if the resulting {@code CompletionStage} is converted to and
@@ -16053,7 +16053,7 @@ public final CompletionStage<T> firstOrErrorStage() {
1605316053 * <p>
1605416054 * <img width="640" height="227" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/singleOrErrorStage.o.png" alt="">
1605516055 * <p>
16056- * The upstream can be canceled by converting the resulting {@code CompletionStage} into
16056+ * The upstream can be cancelled by converting the resulting {@code CompletionStage} into
1605716057 * {@link CompletableFuture} via {@link CompletionStage#toCompletableFuture()} and
1605816058 * calling {@link CompletableFuture#cancel(boolean)} on it.
1605916059 * The upstream will be also cancelled if the resulting {@code CompletionStage} is converted to and
@@ -16079,7 +16079,7 @@ public final CompletionStage<T> singleOrErrorStage() {
1607916079 * <p>
1608016080 * <img width="640" height="343" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/lastOrErrorStage.o.png" alt="">
1608116081 * <p>
16082- * The upstream can be canceled by converting the resulting {@code CompletionStage} into
16082+ * The upstream can be cancelled by converting the resulting {@code CompletionStage} into
1608316083 * {@link CompletableFuture} via {@link CompletionStage#toCompletableFuture()} and
1608416084 * calling {@link CompletableFuture#cancel(boolean)} on it.
1608516085 * The upstream will be also cancelled if the resulting {@code CompletionStage} is converted to and
0 commit comments