docs: update readme exemples

pull/4/head v1.0.2
Raphaël 2020-03-16 17:53:53 +00:00 committed by GitHub
parent 0a061419af
commit a74a941fbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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"
}
```
@ -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