diff --git a/doc/go_spec.html b/doc/go_spec.html
index e55f34aa63..3dcab9c4a6 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -8006,6 +8006,9 @@ func Sizeof(variable ArbitraryType) uintptr
type IntegerType int // shorthand for an integer type; it is not a real type
func Add(ptr Pointer, len IntegerType) Pointer
func Slice(ptr *ArbitraryType, len IntegerType) []ArbitraryType
+func SliceData(slice []ArbitraryType) *ArbitraryType
+func String(ptr *byte, len IntegerType) string
+func StringData(str string) *byte