Skip to content

Commit

Permalink
Fix malformed tags in documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
devinlyons committed Oct 21, 2024
1 parent 54f2737 commit 24ca92d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/FSharpPlus/Data/NonEmptyList.fs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ module NonEmptyList =

/// <summary>Applies a function to corresponding elements of two collections, threading an accumulator argument through the computation.
/// The collections must have identical sizes.
/// 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>
/// 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>
/// <param name="folder">The function to update the state given the input elements.</param>
/// <param name="state">The initial state.</param>
/// <param name="list1">The first input list.</param>
Expand All @@ -417,7 +417,7 @@ module NonEmptyList =

/// <summary>Applies a function to corresponding elements of two collections, threading an accumulator argument through the computation.
/// The collections must have identical sizes.
/// 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>
/// 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>
/// <param name="folder">The function to update the state given the input elements.</param>
/// <param name="list1">The first input list.</param>
/// <param name="list2">The second input list.</param>
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpPlus/Data/NonEmptySeq.fs
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ module NonEmptySeq =

/// <summary>Applies a function to corresponding elements of two collections, threading an accumulator argument through the computation.
/// The collections must have identical sizes.
/// 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>
/// 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>
/// <param name="folder">The function to update the state given the input elements.</param>
/// <param name="state">The initial state.</param>
/// <param name="source1">The first input sequence.</param>
Expand All @@ -342,7 +342,7 @@ module NonEmptySeq =

/// <summary>Applies a function to corresponding elements of two collections, threading an accumulator argument through the computation.
/// The collections must have identical sizes.
/// 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>
/// 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>
/// <param name="folder">The function to update the state given the input elements.</param>
/// <param name="source1">The first input sequence.</param>
/// <param name="source2">The second input sequence.</param>
Expand Down

0 comments on commit 24ca92d

Please sign in to comment.