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
Copy file name to clipboardExpand all lines: src/FSharp.Control.TaskSeq/TaskSeq.fsi
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1165,8 +1165,8 @@ 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 <paramref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1169
-
/// then computes <code>f (... (f s i0)...) iN</code>.
1168
+
/// argument of type <paramref name="'State" /> through the computation. If the input function is <paramref name="f" /> and the elements are <paramref name="i0...iN" />
1169
+
/// then computes <paramref name="f (... (f s i0)...) iN" />.
1170
1170
/// If the accumulator function <paramref name="folder" /> is asynchronous, consider using <see cref="TaskSeq.foldAsync" />.
1171
1171
/// </summary>
1172
1172
///
@@ -1179,8 +1179,8 @@ 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 <paramref name="'State" /> through the computation. If the input function is <code>f</code> and the elements are <code>i0...iN</code>
1183
-
/// then computes <code>f (... (f s i0)...) iN</code>.
1182
+
/// argument of type <paramref name="'State" /> through the computation. If the input function is <paramref name="f" /> and the elements are <paramref name="i0...iN" />
1183
+
/// then computes <paramref name="f (... (f s i0)...) iN" />.
1184
1184
/// If the accumulator function <paramref name="folder" /> is synchronous, consider using <see cref="TaskSeq.fold" />.
0 commit comments