From 32d067d10c5f52b62b757e27cbbee00c67b1ab03 Mon Sep 17 00:00:00 2001 From: Tim Maes Date: Wed, 13 Dec 2023 09:25:09 +0100 Subject: [PATCH] Fix typo --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 712b66a..d0472bf 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Or just copy whatever you need from this repository :) |Name | Description | |-----------------------------------|---------------------------------------------------| -|`Add()` and `AddRange()` | Appends single or multiple items to the end of an array.| +|`Add()`, `AddRange()` | Appends single or multiple items to the end of an array.| |`AllEqual()`| Checks if all elements in an array are identical.| |`AnyNull()`| Determines if any element in an array of reference types is null.| |`BinarySearch()`| Performs a binary search on a sorted array.| @@ -30,7 +30,7 @@ Or just copy whatever you need from this repository :) |`FindIndices()`| Finds indices of all elements that match a given predicate.| |`Flatten()`| Flattens a multi-dimensional array into a single-dimensional array.| |`ForEach()`| Executes an action on each element of an array.| -|`IsEmpty()` and `IsNullOrEmpty()`| Check if an array is empty or null/empty, respectively.| +|`IsEmpty()`, `IsNullOrEmpty()`| Check if an array is empty or null/empty, respectively.| |`Interleave()`| Interleaves elements of two arrays into a single array.| |`InsertAt()`| Inserts an element at a specified index.| |`Shuffle()`| Randomly shuffles the elements of an array.| @@ -41,7 +41,7 @@ Or just copy whatever you need from this repository :) |`RemoveAt()`| Removes the element at a specified index.| |`ReplaceAll()`| Replaces all occurrences of a specific value with another in the array.| |`Resize()`| Resizes an array to a specified new size.| -|`RotateLeft()` and `RotateRight()`| Rotates the array left or right by a specified number of positions.| +|`RotateLeft()`, `RotateRight()`| Rotates the array left or right by a specified number of positions.| |`SafeGet()`| Retrieves an element at a specified index or a default value if out of range.| |`SafeSet()`| Sets a value at a specified index, resizing the array if necessary.| |`Segment()`| Splits an array into segments based on a predicate.| @@ -70,8 +70,7 @@ Or just copy whatever you need from this repository :) |`GroupByDayOfWeek`| Groups dates by their day of the week.| |`GroupByMonth`| Groups dates by month.| |`GroupByYear`| Groups dates by year.| - -`LatestDate`: Finds and returns the latest date present in the array. +|`LatestDate`| Finds and returns the latest date present in the array.| ### String Array methods