From f215a0be4d1231d897123e28324ab024f3502a52 Mon Sep 17 00:00:00 2001 From: Jes Cok Date: Sun, 29 Oct 2023 02:11:19 +0000 Subject: [PATCH] cmd/compile/internal/ssa: add missing space in comment Change-Id: I54c3e8e0d61ceb6533284098dc32944f9f14459e GitHub-Last-Rev: 9793d9d039911b74396b315ce47ad0a53169d25c GitHub-Pull-Request: golang/go#63806 Reviewed-on: https://go-review.googlesource.com/c/go/+/538375 Reviewed-by: Keith Randall LUCI-TryBot-Result: Go LUCI Reviewed-by: Keith Randall Auto-Submit: Keith Randall Reviewed-by: qiulaidongfeng <2645477756@qq.com> Reviewed-by: Bryan Mills Run-TryBot: qiulaidongfeng <2645477756@qq.com> --- src/cmd/compile/internal/ssa/lca.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/compile/internal/ssa/lca.go b/src/cmd/compile/internal/ssa/lca.go index 90daebe44f..6e7ad96d29 100644 --- a/src/cmd/compile/internal/ssa/lca.go +++ b/src/cmd/compile/internal/ssa/lca.go @@ -106,7 +106,7 @@ func (lca *lcaRange) find(a, b *Block) *Block { if a == b { return a } - // Find the positions of a and bin the Euler tour. + // Find the positions of a and b in the Euler tour. p1 := lca.blocks[a.ID].pos p2 := lca.blocks[b.ID].pos if p1 > p2 { -- 2.44.0