]> Cypherpunks.ru repositories - gostls13.git/commitdiff
cmd/compile/internal/ssa: add missing space in comment
authorJes Cok <xigua67damn@gmail.com>
Sun, 29 Oct 2023 02:11:19 +0000 (02:11 +0000)
committerGopher Robot <gobot@golang.org>
Mon, 30 Oct 2023 21:52:15 +0000 (21:52 +0000)
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 <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Keith Randall <khr@golang.org>
Reviewed-by: qiulaidongfeng <2645477756@qq.com>
Reviewed-by: Bryan Mills <bcmills@google.com>
Run-TryBot: qiulaidongfeng <2645477756@qq.com>

src/cmd/compile/internal/ssa/lca.go

index 90daebe44f7141099c76d2d6ebb26e0795b0a0e8..6e7ad96d29d629162882ef5cfe7a5b4484f268c1 100644 (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 {