Skip to content

Commit 6504ecf

Browse files
committed
Fix malformed tags in documentation.
1 parent 54f2737 commit 6504ecf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/FSharpPlus/Data/NonEmptyList.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ module NonEmptyList =
395395

396396
/// <summary>Applies a function to corresponding elements of two collections, threading an accumulator argument through the computation.
397397
/// The collections must have identical sizes.
398-
/// If the input function is <c>f</c> and the elements are <c>i0...iN</c> and <c>j0...jN<c/> then computes <c>f (... (f s i0 j0)...) iN jN</c>.</summary>
398+
/// If the input function is <c>f</c> and the elements are <c>i0...iN</c> and <c>j0...jN</c> then computes <c>f (... (f s i0 j0)...) iN jN</c>.</summary>
399399
/// <param name="folder">The function to update the state given the input elements.</param>
400400
/// <param name="state">The initial state.</param>
401401
/// <param name="list1">The first input list.</param>

src/FSharpPlus/Data/NonEmptySeq.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ module NonEmptySeq =
319319

320320
/// <summary>Applies a function to corresponding elements of two collections, threading an accumulator argument through the computation.
321321
/// The collections must have identical sizes.
322-
/// If the input function is <c>f</c> and the elements are <c>i0...iN</c> and <c>j0...jN<c/> then computes <c>f (... (f s i0 j0)...) iN jN</c>.</summary>
322+
/// If the input function is <c>f</c> and the elements are <c>i0...iN</c> and <c>j0...jN</c> then computes <c>f (... (f s i0 j0)...) iN jN</c>.</summary>
323323
/// <param name="folder">The function to update the state given the input elements.</param>
324324
/// <param name="state">The initial state.</param>
325325
/// <param name="source1">The first input sequence.</param>

0 commit comments

Comments
 (0)