Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
WangYihang committed Feb 26, 2024
1 parent f6ded3a commit 2155fc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ type MyTask struct {

func New(url string) *MyTask {
return &MyTask{
Url: url,
StatusCode: 0,
Url: url,
}
}

Expand Down
3 changes: 1 addition & 2 deletions example/simple-http-crawler/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ type MyTask struct {

func New(url string) *MyTask {
return &MyTask{
Url: url,
StatusCode: 0,
Url: url,
}
}

Expand Down

0 comments on commit 2155fc5

Please sign in to comment.