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 6504ecf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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 Down
2 changes: 1 addition & 1 deletion 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 Down

0 comments on commit 6504ecf

Please sign in to comment.