From: Ian Lance Taylor Date: Fri, 18 Aug 2023 16:44:16 +0000 (-0700) Subject: spec: correct type parameter name used in example X-Git-Tag: go1.22rc1~1215 X-Git-Url: http://www.git.cypherpunks.ru/?a=commitdiff_plain;h=ce16086345435d85906de31ea4af486b69bae895;p=gostls13.git spec: correct type parameter name used in example Change-Id: I40595a3f598483d029473af465c756f8777ecc91 Reviewed-on: https://go-review.googlesource.com/c/go/+/520915 Reviewed-by: Ian Lance Taylor TryBot-Bypass: Ian Lance Taylor Reviewed-by: Robert Griesemer Auto-Submit: Ian Lance Taylor --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 301fdb3cf1..a65e466fe4 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -4491,7 +4491,7 @@ the type parameters of the functions that need to be instantiated and for which no explicit type arguments is provided. These type parameters are called bound type parameters. For instance, in the dedup example above, the type parameters -P and E are bound to dedup. +S and E are bound to dedup. An argument to a generic function call may be a generic function itself. The type parameters of that function are included in the set of bound type parameters.