From 24ca92d2dbda3a137b268a7585784e768957966a Mon Sep 17 00:00:00 2001 From: Devin Lyons Date: Mon, 21 Oct 2024 09:28:40 -0800 Subject: [PATCH] Fix malformed tags in documentation. --- src/FSharpPlus/Data/NonEmptyList.fs | 4 ++-- src/FSharpPlus/Data/NonEmptySeq.fs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/FSharpPlus/Data/NonEmptyList.fs b/src/FSharpPlus/Data/NonEmptyList.fs index 79fe96e8f..b5bdc4611 100644 --- a/src/FSharpPlus/Data/NonEmptyList.fs +++ b/src/FSharpPlus/Data/NonEmptyList.fs @@ -395,7 +395,7 @@ module NonEmptyList = /// 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 f and the elements are i0...iN and j0...jN then computes f (... (f s i0 j0)...) iN jN. + /// If the input function is f and the elements are i0...iN and j0...jN then computes f (... (f s i0 j0)...) iN jN. /// The function to update the state given the input elements. /// The initial state. /// The first input list. @@ -417,7 +417,7 @@ module NonEmptyList = /// 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 f and the elements are i0...iN and j0...jN then computes f (... (f s i0 j0)...) iN jN. + /// If the input function is f and the elements are i0...iN and j0...jN then computes f (... (f s i0 j0)...) iN jN. /// The function to update the state given the input elements. /// The first input list. /// The second input list. diff --git a/src/FSharpPlus/Data/NonEmptySeq.fs b/src/FSharpPlus/Data/NonEmptySeq.fs index d02dea965..967445937 100644 --- a/src/FSharpPlus/Data/NonEmptySeq.fs +++ b/src/FSharpPlus/Data/NonEmptySeq.fs @@ -319,7 +319,7 @@ module NonEmptySeq = /// 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 f and the elements are i0...iN and j0...jN then computes f (... (f s i0 j0)...) iN jN. + /// If the input function is f and the elements are i0...iN and j0...jN then computes f (... (f s i0 j0)...) iN jN. /// The function to update the state given the input elements. /// The initial state. /// The first input sequence. @@ -342,7 +342,7 @@ module NonEmptySeq = /// 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 f and the elements are i0...iN and j0...jN then computes f (... (f s i0 j0)...) iN jN. + /// If the input function is f and the elements are i0...iN and j0...jN then computes f (... (f s i0 j0)...) iN jN. /// The function to update the state given the input elements. /// The first input sequence. /// The second input sequence.