From 2a0a2ebd495a4aa1e959d2bb0f5b7d85bab2ec60 Mon Sep 17 00:00:00 2001 From: Jaydev Singh Rao Date: Thu, 20 Oct 2022 12:26:44 +0530 Subject: [PATCH 1/2] minimum -> maximum --- src/docs/maximum.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/maximum.md b/src/docs/maximum.md index c03a6a6..d5d7a36 100644 --- a/src/docs/maximum.md +++ b/src/docs/maximum.md @@ -1,7 +1,7 @@ Folds.maximum([f,] collection; [executor_options...]) Folds.maximum([f,] collection, executor) -Compute the minimum of the items in `collection`, optionally evaluated by +Compute the maximum of the items in `collection`, optionally evaluated by `f`. Parallel by default. See _Extended help_ in [`Folds.reduce`](@ref) for more information. From c181ff4a731fb48e9581ec10fe4de5a74626a17c Mon Sep 17 00:00:00 2001 From: Jaydev Singh Rao Date: Thu, 20 Oct 2022 12:27:26 +0530 Subject: [PATCH 2/2] maximum -> minimum --- src/docs/minimum.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/minimum.md b/src/docs/minimum.md index 458cae4..429f106 100644 --- a/src/docs/minimum.md +++ b/src/docs/minimum.md @@ -1,7 +1,7 @@ - Folds.maximum([f,] collection; [executor_options...]) - Folds.maximum([f,] collection, executor) + Folds.minimum([f,] collection; [executor_options...]) + Folds.minimum([f,] collection, executor) -Compute the maximum of the items in `collection`, optionally evaluated by +Compute the minimum of the items in `collection`, optionally evaluated by `f`. Parallel by default. See _Extended help_ in [`Folds.reduce`](@ref) for more information.