Skip to content

Commit 256d854

Browse files
authored
Fix copy-paste error
1 parent 65c9d8c commit 256d854

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

go/extractor/util/util.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ func GetPkgsInfo(patterns []string, includingDeps bool, flags ...string) (map[st
123123
// It passes the `go list` the flags specified by `flags`.
124124
func GetPkgInfo(pkgpath string, flags ...string) PkgInfo {
125125
return PkgInfo{
126-
PkgDir: GetModDir(pkgpath, flags...),
127-
ModDir: GetPkgDir(pkgpath, flags...),
126+
PkgDir: GetPkgDir(pkgpath, flags...),
127+
ModDir: GetModDir(pkgpath, flags...),
128128
}
129129
}
130130

0 commit comments

Comments
 (0)