From: Oling Cat Date: Fri, 19 Oct 2012 05:35:15 +0000 (+1100) Subject: unsafe: fix a typo X-Git-Tag: go1.1rc2~2099 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c117da37a29ad92dd8b6c6abea236aadd7e71896;p=gostls13.git unsafe: fix a typo R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6736048 --- diff --git a/src/pkg/unsafe/unsafe.go b/src/pkg/unsafe/unsafe.go index b661281fba..83b2e14052 100644 --- a/src/pkg/unsafe/unsafe.go +++ b/src/pkg/unsafe/unsafe.go @@ -11,7 +11,7 @@ package unsafe // part of the unsafe package. It represents the type of an arbitrary Go expression. type ArbitraryType int -// Pointer represents a pointer to an arbitrary type. There are three special operations +// Pointer represents a pointer to an arbitrary type. There are four special operations // available for type Pointer that are not available for other types. // 1) A pointer value of any type can be converted to a Pointer. // 2) A Pointer can be converted to a pointer value of any type.