From d78e9e3f8e0093479cef43c93a4e8c4c1f39e3d7 Mon Sep 17 00:00:00 2001 From: mmmommm Date: Sat, 22 May 2021 20:57:19 +0900 Subject: [PATCH] fix typo --- util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.go b/util.go index 9d6ff98..83a0949 100644 --- a/util.go +++ b/util.go @@ -12,7 +12,7 @@ func IntPtr(i int) *int { return &i } -// TimePtr returns the pointer of a time.Time value. +// BoolPtr returns the pointer of a bool value. func BoolPtr(b bool) *bool { return &b }