Skip to content

Commit 2bad773

Browse files
committed
design/47916-parameterized-go-types.md: fix typo in TParamList methods
As pointed out at: golang/go#47916 (comment) Fix the receiver for TParamList methods. Change-Id: Ic26e859a0830447c2926828e29d5f27bf2c5637f Reviewed-on: https://go-review.googlesource.com/c/proposal/+/346089 Reviewed-by: Robert Findley <[email protected]>
1 parent 18a0d33 commit 2bad773

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

design/47916-parameterized-go-types.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Type parameters are considered identical (as reported by the `Identical` functio
6363
```go
6464
type TParamList struct { /* ... */ }
6565

66-
func (*TypeList) Len() int
67-
func (*TypeList) At(i int) *TypeParam
66+
func (*TParamList) Len() int
67+
func (*TParamList) At(i int) *TypeParam
6868

6969
type TypeList struct { /* ... */ }
7070

0 commit comments

Comments
 (0)