Skip to content

Commit e54ea2d

Browse files
committed
Fix minor Javadoc mistakes
1 parent ecfb6b7 commit e54ea2d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/main/java/io/reactivex/rxjava3/core/Flowable.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4461,7 +4461,7 @@ public static Flowable<Long> timer(long delay, @NonNull TimeUnit unit, @NonNull
44614461

44624462
/**
44634463
* Create a {@code Flowable} by wrapping a {@link Publisher} <em>which has to be implemented according
4464-
* to the <em>Reactive Streams</em> specification by handling backpressure and
4464+
* to the <b>Reactive Streams</b> specification by handling backpressure and
44654465
* cancellation correctly; no safeguards are provided by the {@code Flowable} itself</em>.
44664466
* <dl>
44674467
* <dt><b>Backpressure:</b></dt>
@@ -10967,7 +10967,7 @@ public final <K, V> Flowable<GroupedFlowable<K, V>> groupBy(@NonNull Function<?
1096710967
*
1096810968
* // Emit 1000 items but ensure that the
1096910969
* // internal map never has more than 3 items in it
10970-
* {@code Flowable}
10970+
* Flowable
1097110971
* .range(1, 1000)
1097210972
* // note that number of keys is 10
1097310973
* .groupBy(x -&gt; x % 10, x -&gt; x, true, 16, evictingMapFactory)
@@ -16322,8 +16322,8 @@ public final Flowable<T> throttleLast(long intervalDuration, @NonNull TimeUnit u
1632216322
* Returns a {@code Flowable} that emits only the last item emitted by the source {@link Publisher} during sequential
1632316323
* time windows of a specified duration, where the duration is governed by a specified {@link Scheduler}.
1632416324
* <p>
16325-
* This differs from {@link #throttleFirst} in that this ticks along at a scheduled interval whereas
16326-
* {@link #throttleFirst} does not tick, it just tracks the passage of time.
16325+
* This differs from {@link #throttleFirst(long, TimeUnit, Scheduler)} in that this ticks along at a scheduled interval whereas
16326+
* {@code throttleFirst} does not tick, it just tracks the passage of time.
1632716327
* <p>
1632816328
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/throttleLast.s.png" alt="">
1632916329
* <dl>

src/main/java/io/reactivex/rxjava3/core/Observable.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16342,6 +16342,7 @@ public final Stream<T> blockingStream() {
1634216342
* stream.limit(3).forEach(System.out::println);
1634316343
* }
1634416344
* </code></pre>
16345+
* <dl>
1634516346
* <dt><b>Scheduler:</b></dt>
1634616347
* <dd>{@code blockingStream} does not operate by default on a particular {@link Scheduler}.</dd>
1634716348
* </dl>

0 commit comments

Comments
 (0)