From: Robert Griesemer Date: Thu, 15 Dec 2022 16:15:06 +0000 (-0800) Subject: spec: fix typo X-Git-Tag: go1.20rc2~1^2~25 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=357ea85892eea7ef8cf0f66c8a35b3912a90e219;p=gostls13.git spec: fix typo Fixes #57323. Change-Id: I77d3d747aa4746bb9a8cca0c0500ff8fa6ae33a3 Reviewed-on: https://go-review.googlesource.com/c/go/+/457915 Reviewed-by: Robert Griesemer TryBot-Bypass: Robert Griesemer Auto-Submit: Robert Griesemer Reviewed-by: Than McIntosh --- diff --git a/doc/go_spec.html b/doc/go_spec.html index d812860f4b..f93f2ab9f1 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -951,7 +951,7 @@ if those containing types are only array or struct types.

-// valid array types
+// invalid array types
 type (
 	T1 [10]T1                 // element type of T1 is T1
 	T2 [10]struct{ f T2 }     // T2 contains T2 as component of a struct