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. 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.