1
0
mirror of https://github.com/dstotijn/go-notion.git synced 2025-06-12 23:57:35 +02:00

Merge pull request #6 from mmmommm/fix-typo

Fix typo in comment
This commit is contained in:
David Stotijn 2021-05-22 14:18:08 +02:00 committed by GitHub
commit 9ed2a6f1c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ func IntPtr(i int) *int {
return &i return &i
} }
// TimePtr returns the pointer of a time.Time value. // BoolPtr returns the pointer of a bool value.
func BoolPtr(b bool) *bool { func BoolPtr(b bool) *bool {
return &b return &b
} }