From: Anthony Martin Date: Tue, 14 Dec 2010 06:19:41 +0000 (-0800) Subject: go spec: fix two grammar typos X-Git-Tag: weekly.2010-12-15~31 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=11a016151ba739357cf127144940a35e4e85a010;p=gostls13.git go spec: fix two grammar typos R=gri CC=golang-dev https://golang.org/cl/3580042 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index e7c5d13636..1b1deaba2c 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 .