Reviewers: golang-dev_googlegroups.com,
Message:
Hello [email protected],
I'd like you to review this change to
https://code.google.com/p/go
Description:
unsafe: fix a typo
Please review this at http://codereview.appspot.com/6736048/
Affected files:
M src/pkg/unsafe/unsafe.go
Index: src/pkg/unsafe/unsafe.go
===================================================================
--- a/src/pkg/unsafe/unsafe.go
+++ b/src/pkg/unsafe/unsafe.go
@@ -11,7 +11,7 @@
// 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.