@@ -8846,7 +8846,7 @@ public final <K> Flowable<T> distinct(Function<? super T, K> keySelector,
8846
8846
* {@code CharSequence}s or {@code List}s where the objects will actually have the same
8847
8847
* references when they are modified and {@code distinctUntilChanged} will evaluate subsequent items as same.
8848
8848
* To avoid such situation, it is recommended that mutable data is converted to an immutable one,
8849
- * for example using ` map(CharSequence::toString)` or ` map(list -> Collections.unmodifiableList(new ArrayList<>(list)))` .
8849
+ * for example using {@code map(CharSequence::toString)} or {@code map(list -> Collections.unmodifiableList(new ArrayList<>(list)))} .
8850
8850
* <dl>
8851
8851
* <dt><b>Backpressure:</b></dt>
8852
8852
* <dd>The operator doesn't interfere with backpressure which is determined by the source {@code Publisher}'s
@@ -8889,7 +8889,7 @@ public final Flowable<T> distinctUntilChanged() {
8889
8889
* {@code CharSequence}s or {@code List}s where the objects will actually have the same
8890
8890
* references when they are modified and {@code distinctUntilChanged} will evaluate subsequent items as same.
8891
8891
* To avoid such situation, it is recommended that mutable data is converted to an immutable one,
8892
- * for example using ` map(CharSequence::toString)` or ` map(list -> Collections.unmodifiableList(new ArrayList<>(list)))` .
8892
+ * for example using {@code map(CharSequence::toString)} or {@code map(list -> Collections.unmodifiableList(new ArrayList<>(list)))} .
8893
8893
* <dl>
8894
8894
* <dt><b>Backpressure:</b></dt>
8895
8895
* <dd>The operator doesn't interfere with backpressure which is determined by the source {@code Publisher}'s
@@ -8928,7 +8928,7 @@ public final <K> Flowable<T> distinctUntilChanged(Function<? super T, K> keySele
8928
8928
* {@code CharSequence}s or {@code List}s where the objects will actually have the same
8929
8929
* references when they are modified and {@code distinctUntilChanged} will evaluate subsequent items as same.
8930
8930
* To avoid such situation, it is recommended that mutable data is converted to an immutable one,
8931
- * for example using ` map(CharSequence::toString)` or ` map(list -> Collections.unmodifiableList(new ArrayList<>(list)))` .
8931
+ * for example using {@code map(CharSequence::toString)} or {@code map(list -> Collections.unmodifiableList(new ArrayList<>(list)))} .
8932
8932
* <dl>
8933
8933
* <dt><b>Backpressure:</b></dt>
8934
8934
* <dd>The operator doesn't interfere with backpressure which is determined by the source {@code Publisher}'s
0 commit comments