From 458ef03a7cda488520c1d2b7cea9bcc5e12eaaec Mon Sep 17 00:00:00 2001 From: Ankit Patial Date: Mon, 16 Jun 2025 22:37:34 +0530 Subject: [PATCH] ptr func name change --- ptr/ptr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ptr/ptr.go b/ptr/ptr.go index 340e197..9820681 100644 --- a/ptr/ptr.go +++ b/ptr/ptr.go @@ -22,7 +22,7 @@ func Str(v string) *string { return &v } -func NumStr(v *string) string { +func GetStr(v *string) string { if v == nil { return "" }