cmd/compile/internal/ssa: add missing space in comment

This commit is contained in:
Jes Cok 2023-10-29 10:04:51 +08:00
parent 8c92897e15
commit 9793d9d039
1 changed files with 1 additions and 1 deletions

View File

@ -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 {