diff --git a/src/main/java/io/reactivex/rxjava3/core/Flowable.java b/src/main/java/io/reactivex/rxjava3/core/Flowable.java index b5c52c2583..a8c873bbc4 100644 --- a/src/main/java/io/reactivex/rxjava3/core/Flowable.java +++ b/src/main/java/io/reactivex/rxjava3/core/Flowable.java @@ -14677,7 +14677,7 @@ public final Flowable sample(@NonNull Publisher sampler, boolean emitL /** * Returns a {@code Flowable} that emits the first value emitted by the current {@code Flowable}, then emits one value * for each subsequent value emitted by the current {@code Flowable}. Each emission after the first is the result of - * applying the specified accumulator function to the previous emission and the corresponding value from the current @{code Flowable}. + * applying the specified accumulator function to the previous emission and the corresponding value from the current {@code Flowable}. *

* *

@@ -14710,7 +14710,7 @@ public final Flowable scan(@NonNull BiFunction accumulator) { /** * Returns a {@code Flowable} that emits the provided initial (seed) value, then emits one value for each value emitted * by the current {@code Flowable}. Each emission after the first is the result of applying the specified accumulator - * function to the previous emission and the corresponding value from the current @{code Flowable}. + * function to the previous emission and the corresponding value from the current {@code Flowable}. *

* *

@@ -14763,7 +14763,7 @@ public final Flowable scan(@NonNull BiFunction accumulator) { /** * Returns a {@code Flowable} that emits the provided initial (seed) value, then emits one value for each value emitted * by the current {@code Flowable}. Each emission after the first is the result of applying the specified accumulator - * function to the previous emission and the corresponding value from the current @{code Flowable}. + * function to the previous emission and the corresponding value from the current {@code Flowable}. *

* *

diff --git a/src/main/java/io/reactivex/rxjava3/core/Observable.java b/src/main/java/io/reactivex/rxjava3/core/Observable.java index 3332b624b2..a1e34e9309 100644 --- a/src/main/java/io/reactivex/rxjava3/core/Observable.java +++ b/src/main/java/io/reactivex/rxjava3/core/Observable.java @@ -12204,7 +12204,7 @@ public final Observable sample(@NonNull ObservableSource sampler, bool /** * Returns an {@code Observable} that emits the first value emitted by the current {@code Observable}, then emits one value * for each subsequent value emitted by the current {@code Observable}. Each emission after the first is the result of - * applying the specified accumulator function to the previous emission and the corresponding value from the current @{code Observable}. + * applying the specified accumulator function to the previous emission and the corresponding value from the current {@code Observable}. *

* *

@@ -12233,7 +12233,7 @@ public final Observable scan(@NonNull BiFunction accumulator) { /** * Returns an {@code Observable} that emits the provided initial (seed) value, then emits one value for each value emitted * by the current {@code Observable}. Each emission after the first is the result of applying the specified accumulator - * function to the previous emission and the corresponding value from the current @{code Observable}. + * function to the previous emission and the corresponding value from the current {@code Observable}. *

* *

@@ -12282,7 +12282,7 @@ public final Observable scan(@NonNull R initialValue, @NonNull BiFunction /** * Returns an {@code Observable} that emits the provided initial (seed) value, then emits one value for each value emitted * by the current {@code Observable}. Each emission after the first is the result of applying the specified accumulator - * function to the previous emission and the corresponding value from the current @{code Observable}. + * function to the previous emission and the corresponding value from the current {@code Observable}. *

* *