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 <paramrefname="folder" /> to each element in the task sequence, threading an accumulator
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
-
/// then computes <code>f (... (f s i0)...) iN</code>.
1168
+
/// argument of type <paramrefname="'State" /> through the computation. If the input function is <paramrefname="f" /> and the elements are <paramrefname="i0...iN" />
1169
+
/// then computes <paramrefname="f (... (f s i0)...) iN" />.
1170
1170
/// If the accumulator function <paramrefname="folder" /> is asynchronous, consider using <seecref="TaskSeq.foldAsync" />.
1171
1171
/// </summary>
1172
1172
///
@@ -1179,8 +1179,8 @@ 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 <paramrefname="'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 <paramrefname="'State" /> through the computation. If the input function is <paramrefname="f" /> and the elements are <paramrefname="i0...iN" />
1183
+
/// then computes <paramrefname="f (... (f s i0)...) iN" />.
1184
1184
/// If the accumulator function <paramrefname="folder" /> is synchronous, consider using <seecref="TaskSeq.fold" />.
0 commit comments