Skip to content

Commit 61aa4f3

Browse files
Documentation fixes
1 parent 41ecf8f commit 61aa4f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ List all API Keys belonging to the authenticated user [GET]
174174
String apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY", EnvironmentVariableTarget.User);
175175
var client = new SendGrid.Client(apiKey);
176176
// Leave off .Result for an asyncronous call
177-
HttpResponseMessage responseGet = client.ApiKeys.Get().Result; // Leave off .Result for an asyncronous call
177+
HttpResponseMessage responseGet = client.ApiKeys.Get().Result;
178178
```
179179

180180
Generate a new API Key for the authenticated user [POST]
@@ -211,7 +211,7 @@ HttpResponseMessage responseDelete = client.ApiKeys.Delete(apiKeyId).Result;
211211
#How to: Testing
212212

213213
* Load the solution (We have tested using the Visual Studio Community Edition)
214-
* In the Test Explorer, click "Run All". Tests for the Mail Send v2 endpoint are in the Tests project, while the tests for the v3 endpoints are in the UnitTests project. Selecting "Run All" from the Test Explorer will run the tests in both projects.
214+
* In the Test Explorer, click "Run All". Tests for the Mail Send v2 endpoint are in the "Tests" project, while the tests for the v3 endpoints are in the "UnitTests" project. Selecting "Run All" from the Test Explorer will run the tests in both projects.
215215

216216
You can also test the code by building and running our "Example" project. It will run through the examples using an interactive console. You will need your API key to run the examples against your account.
217217

0 commit comments

Comments
 (0)