@@ -14677,7 +14677,7 @@ public final <U> Flowable<T> sample(@NonNull Publisher<U> sampler, boolean emitL
1467714677 /**
1467814678 * Returns a {@code Flowable} that emits the first value emitted by the current {@code Flowable}, then emits one value
1467914679 * 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}.
1468114681 * <p>
1468214682 * <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scan.v3.png" alt="">
1468314683 * <p>
@@ -14710,7 +14710,7 @@ public final Flowable<T> scan(@NonNull BiFunction<T, T, T> accumulator) {
1471014710 /**
1471114711 * Returns a {@code Flowable} that emits the provided initial (seed) value, then emits one value for each value emitted
1471214712 * 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}.
1471414714 * <p>
1471514715 * <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scanSeed.v3.png" alt="">
1471614716 * <p>
@@ -14763,7 +14763,7 @@ public final Flowable<T> scan(@NonNull BiFunction<T, T, T> accumulator) {
1476314763 /**
1476414764 * Returns a {@code Flowable} that emits the provided initial (seed) value, then emits one value for each value emitted
1476514765 * 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}.
1476714767 * <p>
1476814768 * <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scanSeed.v3.png" alt="">
1476914769 * <p>
0 commit comments