From: guoguangwu Date: Sun, 10 Mar 2024 13:05:30 +0000 (+0000) Subject: cmd/preprofile: fix typo in comment X-Git-Tag: go1.23rc1~927 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e3d4491ad611a3cc3a78a8356ec467bb35f2de68;p=gostls13.git cmd/preprofile: fix typo in comment 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 LUCI-TryBot-Result: Go LUCI Reviewed-by: Cherry Mui Auto-Submit: Ian Lance Taylor --- diff --git a/src/cmd/compile/internal/pgo/irgraph.go b/src/cmd/compile/internal/pgo/irgraph.go index 9ed16d224b..814c40f172 100644 --- a/src/cmd/compile/internal/pgo/irgraph.go +++ b/src/cmd/compile/internal/pgo/irgraph.go @@ -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 {