1
0
mirror of https://github.com/dstotijn/go-notion.git synced 2025-06-15 00:05:04 +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

View File

@ -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
}