From 405d8b580312326711d485393b595db0cb99f625 Mon Sep 17 00:00:00 2001 From: Parker Finch Date: Sun, 13 May 2018 14:01:14 -0400 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d4f5d83..677a7a9 100644 --- a/README.md +++ b/README.md @@ -556,7 +556,7 @@ Comparison: `Enumerable#sort_by` performs a sort of the enumerable and allocates a new array the size of the enumerable. `Enumerable#min_by` doesn't perform a sort or allocate an array the size of the enumerable. -Similar comparisons hold for `Enumerable#sort_by.last` vs ` +Similar comparisons hold for `Enumerable#sort_by.last` vs `Enumerable#max_by`, `Enumerable#sort.first` vs `Enumerable#min`, and `Enumerable#sort.last` vs `Enumerable#max`.