From cf7322c23acbea192eca41c82ee68ca191820a5d Mon Sep 17 00:00:00 2001 From: Mateusz Poliwczak Date: Mon, 3 Mar 2025 19:27:12 +0100 Subject: [PATCH] typo Change-Id: I961be6ae172f8f4b82f4d5b84d45d00f1c5ac05d --- src/cmd/compile/internal/devirtualize/devirtualize.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/compile/internal/devirtualize/devirtualize.go b/src/cmd/compile/internal/devirtualize/devirtualize.go index 2b8ab754c99be6..279d9d1e281afa 100644 --- a/src/cmd/compile/internal/devirtualize/devirtualize.go +++ b/src/cmd/compile/internal/devirtualize/devirtualize.go @@ -271,7 +271,7 @@ func concreteType1(s *State, n ir.Node, seen map[*ir.Name]struct{}) (t *types.Ty } if _, ok := seen[name]; ok { - // Self assignment, treat is the same as a nil assignment. + // Self assignment, treat it the same as a nil assignment. // In case this is the only assignment then we are not going to devirtualize anything. // In case there are other assignment, we still preserve the correct type. return nil, true