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
/// <exceptioncref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -697,7 +697,7 @@ type TaskSeq =
697
697
/// If <paramrefname="chooser" /> is synchronous, consider using <seecref="TaskSeq.choose" />.
698
698
/// </summary>
699
699
///
700
-
/// <paramname="chooser">An asynchronous function to transform items of type <typeparamrefname="'T" /> into options of type <typeparamrefname="'U" />.</param>
700
+
/// <paramname="chooser">An asynchronous function to transform items of type <paramrefname="'T" /> into options of type <paramrefname="'U" />.</param>
/// <returns>The chosen element or <seecref="None" />.</returns>
940
940
/// <exceptioncref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -945,7 +945,7 @@ type TaskSeq =
945
945
/// the function returns <seecref="Some(x)" />.
946
946
/// If <paramrefname="chooser" /> is synchronous, consider using <seecref="TaskSeq.tryPick" />.
947
947
/// </summary>
948
-
/// <paramname="chooser">An asynchronous function to transform items of type <typeparamrefname="'T" /> into options of type <typeparamrefname="'U" />.</param>
948
+
/// <paramname="chooser">An asynchronous function to transform items of type <paramrefname="'T" /> into options of type <paramrefname="'U" />.</param>
/// <exceptioncref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
@@ -1018,7 +1018,7 @@ type TaskSeq =
1018
1018
/// If <paramrefname="chooser" /> is synchronous, consider using <seecref="TaskSeq.pick" />.
1019
1019
/// </summary>
1020
1020
///
1021
-
/// <paramname="chooser">An asynchronous function to transform items of type <typeparamrefname="'T" /> into options of type <typeparamrefname="'U" />.</param>
1021
+
/// <paramname="chooser">An asynchronous function to transform items of type <paramrefname="'T" /> into options of type <paramrefname="'U" />.</param>
/// <exceptioncref="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 <paramrefname="folder" /> to each element in the task sequence, threading an accumulator
1168
-
/// argument of type <typeparamrefname="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1168
+
/// argument of type <paramrefname="'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 <paramrefname="folder" /> is asynchronous, consider using <seecref="TaskSeq.foldAsync" />.
1171
1171
/// </summary>
@@ -1179,7 +1179,7 @@ type TaskSeq =
1179
1179
1180
1180
/// <summary>
1181
1181
/// Applies the asynchronous function <paramrefname="folder" /> to each element in the task sequence, threading an accumulator
1182
-
/// argument of type <typeparamrefname="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1182
+
/// argument of type <paramrefname="'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 <paramrefname="folder" /> is synchronous, consider using <seecref="TaskSeq.fold" />.
0 commit comments