@@ -14677,7 +14677,7 @@ public final <U> Flowable<T> sample(@NonNull Publisher<U> sampler, boolean emitL
14677
14677
/**
14678
14678
* Returns a {@code Flowable} that emits the first value emitted by the current {@code Flowable}, then emits one value
14679
14679
* for each subsequent value emitted by the current {@code Flowable}. Each emission after the first is the result of
14680
- * applying the specified accumulator function to the previous emission and the corresponding value from the current @{ code Flowable}.
14680
+ * applying the specified accumulator function to the previous emission and the corresponding value from the current {@ code Flowable}.
14681
14681
* <p>
14682
14682
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scan.v3.png" alt="">
14683
14683
* <p>
@@ -14710,7 +14710,7 @@ public final Flowable<T> scan(@NonNull BiFunction<T, T, T> accumulator) {
14710
14710
/**
14711
14711
* Returns a {@code Flowable} that emits the provided initial (seed) value, then emits one value for each value emitted
14712
14712
* by the current {@code Flowable}. Each emission after the first is the result of applying the specified accumulator
14713
- * function to the previous emission and the corresponding value from the current @{ code Flowable}.
14713
+ * function to the previous emission and the corresponding value from the current {@ code Flowable}.
14714
14714
* <p>
14715
14715
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scanSeed.v3.png" alt="">
14716
14716
* <p>
@@ -14763,7 +14763,7 @@ public final Flowable<T> scan(@NonNull BiFunction<T, T, T> accumulator) {
14763
14763
/**
14764
14764
* Returns a {@code Flowable} that emits the provided initial (seed) value, then emits one value for each value emitted
14765
14765
* by the current {@code Flowable}. Each emission after the first is the result of applying the specified accumulator
14766
- * function to the previous emission and the corresponding value from the current @{ code Flowable}.
14766
+ * function to the previous emission and the corresponding value from the current {@ code Flowable}.
14767
14767
* <p>
14768
14768
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scanSeed.v3.png" alt="">
14769
14769
* <p>
0 commit comments