You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -697,7 +697,7 @@ type TaskSeq =
697
697
/// If <paramref name="chooser" /> is synchronous, consider using <see cref="TaskSeq.choose" />.
698
698
/// </summary>
699
699
///
700
-
/// <param name="chooser">An asynchronous function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
700
+
/// <param name="chooser">An asynchronous function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
/// <returns>The chosen element or <see cref="None" />.</returns>
940
940
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -945,7 +945,7 @@ type TaskSeq =
945
945
/// the function returns <see cref="Some(x)" />.
946
946
/// If <paramref name="chooser" /> is synchronous, consider using <see cref="TaskSeq.tryPick" />.
947
947
/// </summary>
948
-
/// <param name="chooser">An asynchronous function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
948
+
/// <param name="chooser">An asynchronous function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -1018,7 +1018,7 @@ type TaskSeq =
1018
1018
/// If <paramref name="chooser" /> is synchronous, consider using <see cref="TaskSeq.pick" />.
1019
1019
/// </summary>
1020
1020
///
1021
-
/// <param name="chooser">An asynchronous function to transform items of type <typeparamref name="'T" /> into options of type <typeparamref name="'U" />.</param>
1021
+
/// <param name="chooser">An asynchronous function to transform items of type <paramref name="'T" /> into options of type <paramref name="'U" />.</param>
/// <exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -1165,7 +1165,7 @@ type TaskSeq =
1165
1165
1166
1166
/// <summary>
1167
1167
/// Applies the function <paramref name="folder" /> to each element in the task sequence, threading an accumulator
1168
-
/// argument of type <typeparamref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1168
+
/// argument of type <paramref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1169
1169
/// then computes <code>f (... (f s i0)...) iN</code>.
1170
1170
/// If the accumulator function <paramref name="folder" /> is asynchronous, consider using <see cref="TaskSeq.foldAsync" />.
1171
1171
/// </summary>
@@ -1179,7 +1179,7 @@ type TaskSeq =
1179
1179
1180
1180
/// <summary>
1181
1181
/// Applies the asynchronous function <paramref name="folder" /> to each element in the task sequence, threading an accumulator
1182
-
/// argument of type <typeparamref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1182
+
/// argument of type <paramref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1183
1183
/// then computes <code>f (... (f s i0)...) iN</code>.
1184
1184
/// If the accumulator function <paramref name="folder" /> is synchronous, consider using <see cref="TaskSeq.fold" />.
0 commit comments