From fe2b7d1efeeb8cf6ccffe5419da5a55a4cbdbb43 Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Tue, 19 Mar 2024 14:57:21 +0800 Subject: [PATCH] cmd/compile: fix typo in comment Signed-off-by: guoguangwu --- src/cmd/compile/internal/ssagen/ssa.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/compile/internal/ssagen/ssa.go b/src/cmd/compile/internal/ssagen/ssa.go index 2e3ad3232b..06180f8dea 100644 --- a/src/cmd/compile/internal/ssagen/ssa.go +++ b/src/cmd/compile/internal/ssagen/ssa.go @@ -3152,7 +3152,7 @@ func (s *state) exprCheckPtr(n ir.Node, checkPtrOK bool) *ssa.Value { // In theory, we should set b.Likely here based on context. // However, gc only gives us likeliness hints // in a single place, for plain OIF statements, - // and passing around context is finnicky, so don't bother for now. + // and passing around context is finicky, so don't bother for now. bRight := s.f.NewBlock(ssa.BlockPlain) bResult := s.f.NewBlock(ssa.BlockPlain)