1
0
mirror of https://github.com/golang/go synced 2024-11-18 23:05:06 -07:00

cmd/compile/internal/ir: remove redundant not in doc

Change-Id: Ia4fc2ceafa92f38742d3a017e37350875fdcc25e
GitHub-Last-Rev: 482f5e4fe6
GitHub-Pull-Request: golang/go#62299
Reviewed-on: https://go-review.googlesource.com/c/go/+/522940
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
Auto-Submit: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
This commit is contained in:
Jes Cok 2023-08-26 11:56:38 +00:00 committed by Gopher Robot
parent ecfd2cab7b
commit 7e7dd4dcd9

View File

@ -285,7 +285,7 @@ func NewIfStmt(pos src.XPos, cond Node, body, els []Node) *IfStmt {
//
// Note that a JumpTableStmt is more like a multiway-goto than
// a multiway-if. In particular, the case bodies are just
// labels to jump to, not not full Nodes lists.
// labels to jump to, not full Nodes lists.
type JumpTableStmt struct {
miniStmt