From: Ian Lance Taylor Date: Mon, 14 Nov 2016 23:51:30 +0000 (-0800) Subject: cmd/cgo: add missing period in comment X-Git-Tag: go1.8beta1~152 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=59dc9d7a89829127883dd5e2d8b042f1e5b40336;p=gostls13.git cmd/cgo: add missing period in comment Change-Id: I05f31938f3736100bd8b20a150c9fe3a6ffcdeae Reviewed-on: https://go-review.googlesource.com/33245 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/cmd/cgo/gcc.go b/src/cmd/cgo/gcc.go index d88c41d50a..5ee06f7f40 100644 --- a/src/cmd/cgo/gcc.go +++ b/src/cmd/cgo/gcc.go @@ -1424,7 +1424,7 @@ var typedef = make(map[string]*Type) var goIdent = make(map[string]*ast.Ident) // unionWithPointer is true for a Go type that represents a C union (or class) -// that may contain a pointer. This is used for cgo pointer checking +// that may contain a pointer. This is used for cgo pointer checking. var unionWithPointer = make(map[ast.Expr]bool) func (c *typeConv) Init(ptrSize, intSize int64) {