@@ -1085,7 +1085,7 @@ type TaskSeq =
10851085 ///
10861086 /// <param name="value">The value to locate in the input sequence.</param>
10871087 /// <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>
10891089 /// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
10901090 static member contains < 'T when 'T : equality > : value : 'T -> source : TaskSeq < 'T > -> Task < bool >
10911091
@@ -1098,7 +1098,7 @@ type TaskSeq =
10981098 ///
10991099 /// <param name="predicate">A function to test each item of the input sequence.</param>
11001100 /// <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>
11021102 /// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
11031103 static member exists : predicate : ( 'T -> bool ) -> source : TaskSeq < 'T > -> Task < bool >
11041104
@@ -1111,7 +1111,7 @@ type TaskSeq =
11111111 ///
11121112 /// <param name="predicate">A function to test each item of the input sequence.</param>
11131113 /// <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>
11151115 /// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
11161116 static member existsAsync : predicate : ( 'T -> #Task < bool >) -> source : TaskSeq < 'T > -> Task < bool >
11171117
0 commit comments