Skip to content

Commit fb45ce8

Browse files
committed
Fix minor typos of @{code
1 parent 82a218a commit fb45ce8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: src/main/java/io/reactivex/rxjava3/core/Flowable.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -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>

Diff for: src/main/java/io/reactivex/rxjava3/core/Observable.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -12204,7 +12204,7 @@ public final <U> Observable<T> sample(@NonNull ObservableSource<U> sampler, bool
1220412204
/**
1220512205
* Returns an {@code Observable} that emits the first value emitted by the current {@code Observable}, then emits one value
1220612206
* for each subsequent value emitted by the current {@code Observable}. Each emission after the first is the result of
12207-
* applying the specified accumulator function to the previous emission and the corresponding value from the current @{code Observable}.
12207+
* applying the specified accumulator function to the previous emission and the corresponding value from the current {@code Observable}.
1220812208
* <p>
1220912209
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scan.v3.png" alt="">
1221012210
* <p>
@@ -12233,7 +12233,7 @@ public final Observable<T> scan(@NonNull BiFunction<T, T, T> accumulator) {
1223312233
/**
1223412234
* Returns an {@code Observable} that emits the provided initial (seed) value, then emits one value for each value emitted
1223512235
* by the current {@code Observable}. Each emission after the first is the result of applying the specified accumulator
12236-
* function to the previous emission and the corresponding value from the current @{code Observable}.
12236+
* function to the previous emission and the corresponding value from the current {@code Observable}.
1223712237
* <p>
1223812238
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scanSeed.v3.png" alt="">
1223912239
* <p>
@@ -12282,7 +12282,7 @@ public final <R> Observable<R> scan(@NonNull R initialValue, @NonNull BiFunction
1228212282
/**
1228312283
* Returns an {@code Observable} that emits the provided initial (seed) value, then emits one value for each value emitted
1228412284
* by the current {@code Observable}. Each emission after the first is the result of applying the specified accumulator
12285-
* function to the previous emission and the corresponding value from the current @{code Observable}.
12285+
* function to the previous emission and the corresponding value from the current {@code Observable}.
1228612286
* <p>
1228712287
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/scanSeed.v3.png" alt="">
1228812288
* <p>

0 commit comments

Comments
 (0)