From 984c1d39a0276e9e68f14af4c1687874ce5ad76c Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Tue, 1 Dec 2020 03:28:38 -0500 Subject: [PATCH] fix typo in ContainsPkgCallExpr comment (#545) --- call_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/call_list.go b/call_list.go index 115c6c8..4b3fcf0 100644 --- a/call_list.go +++ b/call_list.go @@ -70,7 +70,7 @@ func (c CallList) ContainsPointer(selector, indent string) bool { } // ContainsPkgCallExpr resolves the call expression name and type, and then further looks -// up the package path for that type. Finally, it determines if the call exists within the call list +// up the package path for that type. Finally, it determines if the call exists within the call list func (c CallList) ContainsPkgCallExpr(n ast.Node, ctx *Context, stripVendor bool) *ast.CallExpr { selector, ident, err := GetCallInfo(n, ctx) if err != nil {