@@ -31,7 +31,7 @@ public static <T> JoinObservable<T> from(Observable<T> o) {
3131 /**
3232 * Returns a Pattern that matches when both Observables emit an item.
3333 * <p>
34- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
34+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
3535 *
3636 * @param right
3737 * an Observable to match with the source Observable
@@ -48,7 +48,7 @@ public final <T2> Pattern2<T, T2> and(Observable<T2> right) {
4848 /**
4949 * Joins together the results from several patterns via their plans.
5050 * <p>
51- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
51+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
5252 *
5353 * @param plans
5454 * a series of plans created by use of the {@link #then} Observer on patterns
@@ -68,7 +68,7 @@ public final static <R> JoinObservable<R> when(Iterable<? extends Plan0<R>> plan
6868 /**
6969 * Joins together the results from several patterns via their plans.
7070 * <p>
71- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
71+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
7272 *
7373 * @param plans
7474 * a series of plans created by use of the {@link #then} Observer on patterns
@@ -85,7 +85,7 @@ public final static <R> JoinObservable<R> when(Plan0<R>... plans) {
8585 /**
8686 * Joins the results from a pattern via its plan.
8787 * <p>
88- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
88+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
8989 *
9090 * @param p1
9191 * the plan to join, created by use of the {@link #then} Observer on a pattern
@@ -101,7 +101,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1) {
101101 /**
102102 * Joins together the results from two patterns via their plans.
103103 * <p>
104- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
104+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
105105 *
106106 * @param p1
107107 * a plan, created by use of the {@link #then} Observer on a pattern
@@ -119,7 +119,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2) {
119119 /**
120120 * Joins together the results from three patterns via their plans.
121121 * <p>
122- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
122+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
123123 *
124124 * @param p1
125125 * a plan, created by use of the {@link #then} Observer on a pattern
@@ -139,7 +139,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
139139 /**
140140 * Joins together the results from four patterns via their plans.
141141 * <p>
142- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
142+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
143143 *
144144 * @param p1
145145 * a plan, created by use of the {@link #then} Observer on a pattern
@@ -161,7 +161,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
161161 /**
162162 * Joins together the results from five patterns via their plans.
163163 * <p>
164- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
164+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
165165 *
166166 * @param p1
167167 * a plan, created by use of the {@link #then} Observer on a pattern
@@ -185,7 +185,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
185185 /**
186186 * Joins together the results from six patterns via their plans.
187187 * <p>
188- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
188+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
189189 *
190190 * @param p1
191191 * a plan, created by use of the {@link #then} Observer on a pattern
@@ -211,7 +211,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
211211 /**
212212 * Joins together the results from seven patterns via their plans.
213213 * <p>
214- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
214+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
215215 *
216216 * @param p1
217217 * a plan, created by use of the {@link #then} Observer on a pattern
@@ -239,7 +239,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
239239 /**
240240 * Joins together the results from eight patterns via their plans.
241241 * <p>
242- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
242+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
243243 *
244244 * @param p1
245245 * a plan, created by use of the {@link #then} Observer on a pattern
@@ -269,7 +269,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
269269 /**
270270 * Joins together the results from nine patterns via their plans.
271271 * <p>
272- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
272+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
273273 *
274274 * @param p1
275275 * a plan, created by use of the {@link #then} Observer on a pattern
@@ -302,7 +302,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
302302 * Matches when the Observable has an available item and projects the item by invoking the selector
303303 * function.
304304 * <p>
305- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
305+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="" >
306306 *
307307 * @param selector
308308 * selector that will be invoked for items emitted by the source Observable
0 commit comments