Skip to content

Commit f12e8a7

Browse files
authored
Unnecessary semicolon removed (#1728)
1 parent 9fcc09f commit f12e8a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ using RestSharp;
2929
using RestSharp.Authenticators;
3030

3131
var client = new RestClient("https://api.twitter.com/1.1") {
32-
Authenticator = new HttpBasicAuthenticator("username", "password");
32+
Authenticator = new HttpBasicAuthenticator("username", "password")
3333
};
3434
var request = new RestRequest("statuses/home_timeline.json");
3535
var response = await client.GetAsync(request, cancellationToken);

0 commit comments

Comments
 (0)