1
0
mirror of https://github.com/golang/go synced 2024-11-22 05:54:40 -07:00

doc/go_spec: fix typo

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/5990043
This commit is contained in:
Hong Ruiqi 2012-04-05 22:37:07 +10:00 committed by David Symonds
parent 4b943bded8
commit 8374e67876

View File

@ -5401,7 +5401,7 @@ type ArbitraryType int // shorthand for an arbitrary Go type; it is not a real
type Pointer *ArbitraryType type Pointer *ArbitraryType
func Alignof(variable ArbitraryType) uintptr func Alignof(variable ArbitraryType) uintptr
func Offsetof(selector ArbitraryType) uinptr func Offsetof(selector ArbitraryType) uintptr
func Sizeof(variable ArbitraryType) uintptr func Sizeof(variable ArbitraryType) uintptr
</pre> </pre>