cmd/compile/internal/ir: fix doc

Change-Id: I8fc77e29cb44fef264a62ff00452b9fcf6e30be8
GitHub-Last-Rev: 414cda8ce6
GitHub-Pull-Request: golang/go#45842
Reviewed-on: https://go-review.googlesource.com/c/go/+/314990
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>
Trust: Matthew Dempsky <mdempsky@google.com>
This commit is contained in:
kumakichi 2021-04-29 05:45:35 +00:00 committed by Matthew Dempsky
parent 18852e8372
commit 4e3e6b58f7
6 changed files with 12 additions and 12 deletions

View file

@ -238,7 +238,7 @@ func (f *Func) SetWBPos(pos src.XPos) {
}
}
// funcname returns the name (without the package) of the function n.
// FuncName returns the name (without the package) of the function n.
func FuncName(f *Func) string {
if f == nil || f.Nname == nil {
return "<nil>"
@ -246,7 +246,7 @@ func FuncName(f *Func) string {
return f.Sym().Name
}
// pkgFuncName returns the name of the function referenced by n, with package prepended.
// PkgFuncName returns the name of the function referenced by n, with package prepended.
// This differs from the compiler's internal convention where local functions lack a package
// because the ultimate consumer of this is a human looking at an IDE; package is only empty
// if the compilation package is actually the empty string.