diff --git a/doc/go_spec.html b/doc/go_spec.html index 3d1189973d..4ed5f4d175 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -5954,6 +5954,8 @@ func Sizeof(variable ArbitraryType) uintptr

Any pointer or value of underlying type uintptr can be converted to a Pointer type and vice versa. +A Pointer is a pointer type but a Pointer +value may not be dereferenced.

@@ -5962,6 +5964,8 @@ bits = *(*uint64)(unsafe.Pointer(&f))
 
 type ptr unsafe.Pointer
 bits = *(*uint64)(ptr(&f))
+
+var p ptr = nil