@@ -1085,7 +1085,7 @@ type TaskSeq =
1085
1085
///
1086
1086
/// <param name="value">The value to locate in the input sequence.</param>
1087
1087
/// <param name="source">The input task sequence.</param>
1088
- /// <returns><see cref="True " /> if the input sequence contains the specified element; <see cref="false" /> otherwise.</returns>
1088
+ /// <returns><see cref="true " /> if the input sequence contains the specified element; <see cref="false" /> otherwise.</returns>
1089
1089
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
1090
1090
static member contains < 'T when 'T : equality > : value : 'T -> source : TaskSeq < 'T > -> Task < bool >
1091
1091
@@ -1098,7 +1098,7 @@ type TaskSeq =
1098
1098
///
1099
1099
/// <param name="predicate">A function to test each item of the input sequence.</param>
1100
1100
/// <param name="source">The input task sequence.</param>
1101
- /// <returns><see cref="True " /> if any result from the predicate is true; <see cref="false" /> otherwise.</returns>
1101
+ /// <returns><see cref="true " /> if any result from the predicate is true; <see cref="false" /> otherwise.</returns>
1102
1102
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
1103
1103
static member exists : predicate : ( 'T -> bool ) -> source : TaskSeq < 'T > -> Task < bool >
1104
1104
@@ -1111,7 +1111,7 @@ type TaskSeq =
1111
1111
///
1112
1112
/// <param name="predicate">A function to test each item of the input sequence.</param>
1113
1113
/// <param name="source">The input task sequence.</param>
1114
- /// <returns><see cref="True " /> if any result from the predicate is true; <see cref="false" /> otherwise.</returns>
1114
+ /// <returns><see cref="true " /> if any result from the predicate is true; <see cref="false" /> otherwise.</returns>
1115
1115
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
1116
1116
static member existsAsync : predicate : ( 'T -> #Task < bool >) -> source : TaskSeq < 'T > -> Task < bool >
1117
1117
0 commit comments