diff --git a/doc/go_spec.html b/doc/go_spec.html index e7c5d136365..1b1deaba2c9 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -596,7 +596,7 @@ which composes a new type from previously declared types.
Type = TypeName | TypeLit | "(" Type ")" . -TypeName = QualifiedIdent. +TypeName = QualifiedIdent . TypeLit = ArrayType | StructType | PointerType | FunctionType | InterfaceType | SliceType | MapType | ChannelType .@@ -1831,7 +1831,7 @@ A function declaration binds an identifier to a function (ยง FunctionDecl = "func" identifier Signature [ Body ] . -Body = Block. +Body = Block .