@@ -8846,7 +8846,7 @@ public final <K> Flowable<T> distinct(Function<? super T, K> keySelector,
88468846 * {@code CharSequence}s or {@code List}s where the objects will actually have the same
88478847 * references when they are modified and {@code distinctUntilChanged} will evaluate subsequent items as same.
88488848 * 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)))} .
88508850 * <dl>
88518851 * <dt><b>Backpressure:</b></dt>
88528852 * <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() {
88898889 * {@code CharSequence}s or {@code List}s where the objects will actually have the same
88908890 * references when they are modified and {@code distinctUntilChanged} will evaluate subsequent items as same.
88918891 * 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)))} .
88938893 * <dl>
88948894 * <dt><b>Backpressure:</b></dt>
88958895 * <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
89288928 * {@code CharSequence}s or {@code List}s where the objects will actually have the same
89298929 * references when they are modified and {@code distinctUntilChanged} will evaluate subsequent items as same.
89308930 * 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)))} .
89328932 * <dl>
89338933 * <dt><b>Backpressure:</b></dt>
89348934 * <dd>The operator doesn't interfere with backpressure which is determined by the source {@code Publisher}'s
0 commit comments