From 2bc3746616e2bc99cd732c21044fad665c841a2c Mon Sep 17 00:00:00 2001 From: Ahmed Ashraf <104530599+ahmedabdou14@users.noreply.github.com> Date: Sun, 13 Apr 2025 01:19:30 +0300 Subject: [PATCH] fix typo in readme (#620) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea41821..f5323df 100644 --- a/README.md +++ b/README.md @@ -4052,7 +4052,7 @@ ok github.com/samber/lo 6.657s ``` - `lo.Map` is way faster (x7) than `go-funk`, a reflection-based Map implementation. -- `lo.Map` have the same allocation profile than `for`. +- `lo.Map` has the same allocation profile as `for`. - `lo.Map` is 4% slower than `for`. - `lop.Map` is slower than `lo.Map` because it implies more memory allocation and locks. `lop.Map` will be useful for long-running callbacks, such as i/o bound processing. - `for` beats other implementations for memory and CPU.