diff --git a/docs/intro.md b/docs/intro.md index 1265440e1..5df21d41d 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -29,7 +29,7 @@ using RestSharp; using RestSharp.Authenticators; var client = new RestClient("https://api.twitter.com/1.1") { - Authenticator = new HttpBasicAuthenticator("username", "password"); + Authenticator = new HttpBasicAuthenticator("username", "password") }; var request = new RestRequest("statuses/home_timeline.json"); var response = await client.GetAsync(request, cancellationToken);