@@ -2308,12 +2308,12 @@ public Observable<T> first(Func1<? super T, Boolean> predicate) {
2308
2308
* The default value to emit if the source Observable doesn't emit anything.
2309
2309
* @return an Observable that emits only the very first item from the source, or a default value
2310
2310
* if the source Observable completes without emitting a single item.
2311
- * @see <a href="">MSDN: Observable.FirstOrDefault</a>
2311
+ * @see <a href="http://msdn.microsoft.com/en-us/library/hh229320%28v=vs.103%29.aspx ">MSDN: Observable.FirstOrDefault</a>
2312
2312
*/
2313
2313
public Observable <T > firstOrDefault (T defaultValue ) {
2314
2314
return create (OperationFirstOrDefault .firstOrDefault (this , defaultValue ));
2315
2315
}
2316
-
2316
+
2317
2317
/**
2318
2318
* Returns an Observable that emits only the very first item emitted by the source Observable
2319
2319
* that satisfies a given condition, or a default value otherwise.
@@ -2324,12 +2324,12 @@ public Observable<T> firstOrDefault(T defaultValue) {
2324
2324
* satisfies the given condition.
2325
2325
* @return an Observable that emits only the very first item from the source that satisfies the
2326
2326
* given condition, or a default value otherwise.
2327
- * @see <a href="">MSDN: Observable.FirstOrDefault</a>
2327
+ * @see <a href="http://msdn.microsoft.com/en-us/library/hh229759%28v=vs.103%29.aspx ">MSDN: Observable.FirstOrDefault</a>
2328
2328
*/
2329
2329
public Observable <T > firstOrDefault (Func1 <? super T , Boolean > predicate , T defaultValue ) {
2330
2330
return create (OperationFirstOrDefault .firstOrDefault (this , predicate , defaultValue ));
2331
2331
}
2332
-
2332
+
2333
2333
/**
2334
2334
* Returns an Observable that emits items emitted by the source Observable so long as a
2335
2335
* specified condition is true.
0 commit comments