From 85408ed61a410d9a1cbceb434131bfbdd692fad8 Mon Sep 17 00:00:00 2001 From: MukundaKatta Date: Tue, 21 Apr 2026 08:19:14 -0700 Subject: [PATCH] docs(maptostring): fix 'guranteed' -> 'guaranteed' comment typo Closes #28 --- maptostring.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maptostring.go b/maptostring.go index d16d665..6fb80f5 100644 --- a/maptostring.go +++ b/maptostring.go @@ -12,7 +12,7 @@ const ( // MapToString - format map keys and values according to format, joining parts with separator. // Format should contain key and value placeholders which will be used for formatting, e.g. // "{key} : {value}", or "{value}", or "{key} => {value}". -// Parts order in resulting string is not guranteed. +// Parts order in resulting string is not guaranteed. func MapToString[ K string | int | uint | int32 | int64 | uint32 | uint64, V any,