From 4f0de560fcbed57f0ea081b2e93649319d952eda Mon Sep 17 00:00:00 2001 From: Aimeos Date: Tue, 30 Jul 2024 14:02:51 +0200 Subject: [PATCH] Fixed documentation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 382d237..898e60b 100644 --- a/README.md +++ b/README.md @@ -342,7 +342,7 @@ will return: * [count()](#count) : Returns the total number of elements * [countBy()](#countby) : Counts how often the same values are in the map * [max()](#max) : Returns the maximum value of all elements -* [min()](#max) : Returns the minium value of all elements +* [min()](#min) : Returns the minium value of all elements * [sum()](#sum) : Returns the sum of all values in the map ### Debug @@ -803,7 +803,7 @@ Map::from( [1, 3, 5] )->at( 3 ); Returns the average of all integer and float values in the map. ```php -public function avg( string $col = null ) : float +public function avg( $col = null ) : float ``` * @param **Closure|string|null** `$col` Closure, key or path to the values in the nested array or object to compute the average for