]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/preprofile: fix typo in comment
authorguoguangwu <guoguangwug@gmail.com>
Sun, 10 Mar 2024 13:05:30 +0000 (13:05 +0000)
committerGopher Robot <gobot@golang.org>
Mon, 11 Mar 2024 17:08:02 +0000 (17:08 +0000)
Change-Id: Ib44e9e6345fa8df7f46bc9cbdc19ad8ba73c8b83
GitHub-Last-Rev: 5a37ad798807c1bbc1600086ff162dc7019d1bca
GitHub-Pull-Request: golang/go#66233
Reviewed-on: https://go-review.googlesource.com/c/go/+/570415
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>

src/cmd/compile/internal/pgo/irgraph.go

index 9ed16d224b85051e210fe4b8e3eb35cb054e853c..814c40f172f1664945250a61fb9ef7fb8cca5c25 100644 (file)
@@ -241,7 +241,7 @@ func processProto(r io.Reader) (*Profile, error) {
        }, nil
 }
 
-// processPreprof generates a profile-graph from the pre-procesed profile.
+// processPreprof generates a profile-graph from the pre-processed profile.
 func processPreprof(r io.Reader) (*Profile, error) {
        namedEdgeMap, totalWeight, err := createNamedEdgeMapFromPreprocess(r)
        if err != nil {