From 24811aeec7cdec954427c56966d864fcdafae18d Mon Sep 17 00:00:00 2001 From: Alexander Sheiko Date: Wed, 28 Apr 2021 12:40:26 +0300 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf65e5f..0fa990b 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ import ( func main() { scraper := twitterscraper.New().SetSearchMode(twitterscraper.SearchUsers) - for profile := range scraper.SearchUsers(context.Background(), "Twitter", 50) { + for profile := range scraper.SearchProfiles(context.Background(), "Twitter", 50) { if profile.Error != nil { panic(profile.Error) }