From 6bd104027fd8295b4e0c55c1f0705296decf1ac6 Mon Sep 17 00:00:00 2001 From: Emre Ceyhan Date: Sat, 29 Jan 2022 18:15:58 +0300 Subject: [PATCH] Unnecessary semicolon removed --- docs/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);