From: HeGaoYuan Date: Thu, 25 Jul 2024 22:21:52 +0000 (+0000) Subject: cmd/compile/internal/types: fix typo in comment X-Git-Tag: go1.24rc1~1395 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d8c7230c97ca5639389917cc235175bfe2dc50ab;p=gostls13.git cmd/compile/internal/types: fix typo in comment Change-Id: Iacf22578338c8aa99587826a8342e1da6dc166a6 GitHub-Last-Rev: cdb3235e8ca932776ddf803621ac203c493bc873 GitHub-Pull-Request: golang/go#46598 Reviewed-on: https://go-review.googlesource.com/c/go/+/325510 LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov Auto-Submit: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov Reviewed-by: Robert Griesemer --- diff --git a/src/cmd/compile/internal/types/type.go b/src/cmd/compile/internal/types/type.go index 41fdefe830..693bd9385a 100644 --- a/src/cmd/compile/internal/types/type.go +++ b/src/cmd/compile/internal/types/type.go @@ -392,7 +392,7 @@ type ChanArgs struct { T *Type // reference to a chan type whose elements need a width check } -// // FuncArgs contains Type fields specific to TFUNCARGS types. +// FuncArgs contains Type fields specific to TFUNCARGS types. type FuncArgs struct { T *Type // reference to a func type whose elements need a width check }