1
0
mirror of https://github.com/golang/go synced 2024-11-25 16:07:56 -07:00

unsafe: documentation typo.

Fixes #236.

R=r
CC=golang-dev
https://golang.org/cl/155072
This commit is contained in:
Adam Langley 2009-11-16 15:39:04 -08:00
parent af872b2ba4
commit 1cdfe9fa28

View File

@ -30,7 +30,7 @@ func Sizeof(v ArbitraryType) int
// number of bytes between the start of the struct and the start of the field.
func Offsetof(v ArbitraryType) int
// Alignof returns the alignment of the value v. It is the minimum value m such
// Alignof returns the alignment of the value v. It is the maximum value m such
// that the address of a variable with the type of v will always always be zero mod m.
// If v is of the form obj.f, it returns the alignment of field f within struct object obj.
func Alignof(v ArbitraryType) int