Update comment on int8ToPtr

This commit is contained in:
Alex Dadgar
2019-01-30 12:23:14 -08:00
committed by GitHub
parent bc42873e07
commit 4f89ce03fc

View File

@@ -11,7 +11,7 @@ func boolToPtr(b bool) *bool {
return &b
}
// int8ToPtr returns the pointer to an int
// int8ToPtr returns the pointer to an int8
func int8ToPtr(i int8) *int8 {
return &i
}