Skip to content

Commit

Permalink
Updates README
Browse files Browse the repository at this point in the history
  • Loading branch information
gosom committed May 13, 2023
1 parent ef10673 commit 59e6218
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 @@ -83,7 +83,7 @@ type SimpleCountryJob struct {
scrapemate.Job
}

func (j *SimpleCountryJob) Process(ctx context.Context, resp scrapemate.Response) (any, []scrapemate.IJob, error) {
func (j *SimpleCountryJob) Process(ctx context.Context, resp *scrapemate.Response) (any, []scrapemate.IJob, error) {
doc, ok := resp.Document.(*goquery.Document)
if !ok {
return nil, nil, fmt.Errorf("failed to cast response document to goquery document")
Expand Down

0 comments on commit 59e6218

Please sign in to comment.