diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-07-22 17:35:01 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-07-22 17:35:01 -0700 |
commit | dae5ea37dedf8d04440fd07d3e801b831af7a927 (patch) | |
tree | 46bea2dabd6261b797c69284fa0c9cc0dba7c090 | |
parent | 6b5e837614da9057dc9cb15add814dd80d355847 (diff) | |
download | sendgrid-csharp-dae5ea37dedf8d04440fd07d3e801b831af7a927.zip sendgrid-csharp-dae5ea37dedf8d04440fd07d3e801b831af7a927.tar.gz sendgrid-csharp-dae5ea37dedf8d04440fd07d3e801b831af7a927.tar.bz2 |
README formatting fixes
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -64,7 +64,7 @@ namespace Example { private static void Main() { - Execute.Wait(); + Execute.Wait(); } static async Task Execute() @@ -101,10 +101,10 @@ namespace Example { private static void Main() { - Execute.Wait(); + Execute.Wait(); } - static async Task Execute() + static async Task Execute() { String apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY", EnvironmentVariableTarget.User); dynamic sg = new SendGridAPIClient(apiKey); @@ -149,15 +149,15 @@ namespace Example { private static void Main() { - Execute.Wait(); + Execute.Wait(); } static async Task Execute() { string apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY", EnvironmentVariableTarget.User); dynamic sg = new SendGrid.SendGridAPIClient(apiKey); - dynamic response = await sg.client.suppression.bounces.get(); - } + dynamic response = await sg.client.suppression.bounces.get(); + } } } ``` |