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

cmd/preprofile: fix typo in comment

Signed-off-by: guoguangwu <guoguangwug@gmail.com>
This commit is contained in:
guoguangwu 2024-03-10 20:56:45 +08:00
parent 48b10c9af7
commit 5a37ad7988

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 {