Skip to content

Commit 3810940

Browse files
committed
code/typeparamref -> paramref
Makes VS+VSCode highlight Makes Rider unhappy
1 parent 7efc8fe commit 3810940

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/FSharp.Control.TaskSeq/TaskSeq.fsi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1165,8 +1165,8 @@ type TaskSeq =
11651165

11661166
/// <summary>
11671167
/// 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" />.
11701170
/// If the accumulator function <paramref name="folder" /> is asynchronous, consider using <see cref="TaskSeq.foldAsync" />.
11711171
/// </summary>
11721172
///
@@ -1179,8 +1179,8 @@ type TaskSeq =
11791179

11801180
/// <summary>
11811181
/// 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" />.
11841184
/// If the accumulator function <paramref name="folder" /> is synchronous, consider using <see cref="TaskSeq.fold" />.
11851185
/// </summary>
11861186
///

0 commit comments

Comments
 (0)