From c0c382bb4e650d9c5e3cdf44525479505dcd0d6f Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Fri, 1 Mar 2019 16:34:44 -0800 Subject: [PATCH] go/ssa: fix import in comment Change-Id: I55c5d407079afa0137f931c983ebef76ec194413 Reviewed-on: https://go-review.googlesource.com/c/tools/+/164643 Run-TryBot: Josh Bleecher Snyder TryBot-Result: Gobot Gobot Reviewed-by: Alan Donovan --- go/ssa/source.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/ssa/source.go b/go/ssa/source.go index 6d2223ed..8d9cca17 100644 --- a/go/ssa/source.go +++ b/go/ssa/source.go @@ -150,7 +150,7 @@ func findNamedFunc(pkg *Package, pos token.Pos) *Function { // (modulo "untyped" bools resulting from comparisons). // // (Tip: to find the ssa.Value given a source position, use -// importer.PathEnclosingInterval to locate the ast.Node, then +// astutil.PathEnclosingInterval to locate the ast.Node, then // EnclosingFunction to locate the Function, then ValueForExpr to find // the ssa.Value.) //