Skip to content

Commit

Permalink
Fix reference to Package (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrkt committed Mar 19, 2021
1 parent b4d9815 commit 8bc36ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (m *reportModule) Name() string { return "reporter" }
// map. The implementation should return a slice of Artifacts that represent
// the files to be generated. In this case, "/tmp/report.txt" will be created
// outside of the normal protoc flow.
func (m *reportModule) Execute(targets map[string]pgs.File, pkgs map[string]Package) []pgs.Artifact {
func (m *reportModule) Execute(targets map[string]pgs.File, pkgs map[string]pgs.Package) []pgs.Artifact {
buf := &bytes.Buffer{}

for _, f := range targets {
Expand Down

0 comments on commit 8bc36ed

Please sign in to comment.