47781-parameterized-go-ast.md: replace 'TParams' with 'TypeParams'

As discussed in #47781, it is clearer to spell out 'Type'.

Updates #47781

Change-Id: Ifbf76649cf89db55183e8f94da373349ce14c5d3
Reviewed-on: https://go-review.googlesource.com/c/proposal/+/348379
Reviewed-by: Robert Findley <rfindley@google.com>
diff --git a/design/47781-parameterized-go-ast.md b/design/47781-parameterized-go-ast.md
index 3deadc9..6df5b72 100644
--- a/design/47781-parameterized-go-ast.md
+++ b/design/47781-parameterized-go-ast.md
@@ -27,17 +27,17 @@
 type TypeSpec struct {
 	// ...existing fields
 
-	TParams *FieldList
+	TypeParams *FieldList
 }
 
 type FuncType struct {
 	// ...existing fields
 
-	TParams *FieldList
+	TypeParams *FieldList
 }
 ```
 
-To represent type parameters in type and function declarations, both `ast.TypeSpec` and `ast.FuncType` gain a new `TParams *FieldList` field, which will be nil in the case of non-parameterized types and functions.
+To represent type parameters in type and function declarations, both `ast.TypeSpec` and `ast.FuncType` gain a new `TypeParams *FieldList` field, which will be nil in the case of non-parameterized types and functions.
 
 ### For type and function instantiation