diff --git a/doc/go_spec.html b/doc/go_spec.html
index 5860eec7f0c..376046b77da 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -1890,8 +1890,9 @@ LiteralType = StructType | ArrayType | "[" "..." "]" ElementType |
SliceType | MapType | TypeName | "(" LiteralType ")" .
ElementList = Element { "," Element } [ "," ] .
Element = [ Key ":" ] Value .
-Key = FieldName | Index .
+Key = FieldName | ElementIndex .
FieldName = identifier .
+ElementIndex = Expression .
Value = Expression .