From 46aca3d32c0500e6015fa71ea1abbb4ddb31332c Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 20 Dec 2023 08:48:27 +0900 Subject: [PATCH] Fix typo in README.md (#369) intializations -> initializations --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e7e59a1..ea3fb26a 100644 --- a/README.md +++ b/README.md @@ -2048,7 +2048,7 @@ result := lo.TernaryF(false, func() string { return "a" }, func() string { retur // "b" ``` -Useful to avoid nil-pointer dereferencing in intializations, or avoid running unnecessary code +Useful to avoid nil-pointer dereferencing in initializations, or avoid running unnecessary code ```go var s *string