From c117da37a29ad92dd8b6c6abea236aadd7e71896 Mon Sep 17 00:00:00 2001 From: Oling Cat Date: Fri, 19 Oct 2012 16:35:15 +1100 Subject: [PATCH] unsafe: fix a typo R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6736048 --- src/pkg/unsafe/unsafe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/unsafe/unsafe.go b/src/pkg/unsafe/unsafe.go index b661281fba2..83b2e140523 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.