1
0
mirror of https://github.com/golang/go synced 2024-09-28 23:14:38 -06:00

cmd/preprofile: fix typo in comment

Change-Id: Ib44e9e6345fa8df7f46bc9cbdc19ad8ba73c8b83
GitHub-Last-Rev: 5a37ad7988
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>
This commit is contained in:
guoguangwu 2024-03-10 13:05:30 +00:00 committed by Gopher Robot
parent b28b4248f9
commit e3d4491ad6

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