Skip to content

Commit

Permalink
docs: update readme exemples
Browse files Browse the repository at this point in the history
  • Loading branch information
sundowndev authored Mar 16, 2020
1 parent 0a06141 commit a74a941
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func main() {
// dork := &dorkgen.Bing{}

dork.Site("example.com").Intext("text").ToString()
// returns: site:example.com "text"
// returns: site:example.com intext:"text"
}
```

Expand All @@ -57,7 +57,7 @@ dork.Site("facebook.com").Or().Site("twitter.com").ToString()
// returns: site:facebook.com OR site:twitter.com

dork.Intext("facebook").And().Intext("twitter").ToString()
// returns: "facebook" AND "twitter"
// returns: intext:"facebook" AND intext:"twitter"
```

#### Exclude results
Expand Down

0 comments on commit a74a941

Please sign in to comment.