Skip to content

Commit 95a4046

Browse files
docs: typos fixed (#785)
Fix typos in README.md and CONTRIBUTING.md
1 parent db543e6 commit 95a4046

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Generally, we follow the style guidelines as suggested by the official language.
141141

142142
4. Commit your changes in logical chunks. Please adhere to these [git commit
143143
message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
144-
or your code is unlikely be merged into the main project. Use Git's
144+
or your code is unlikely to be merged into the main project. Use Git's
145145
[interactive rebase](https://help.github.com/articles/interactive-rebase)
146146
feature to tidy up your commits before making them public.
147147

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Grab your API Key from the [Twilio SendGrid UI](https://app.sendgrid.com/setting
6565
<a name="setup"></a>
6666
## Setup Environment Variables to Manage Your API Key
6767

68-
Manage your [Twilio SendGrid API Keys](https://app.sendgrid.com/settings/api_keys) by storing them in Environment Variables or in [Web.config](https://docs.microsoft.com/en-us/aspnet/identity/overview/features-api/best-practices-for-deploying-passwords-and-other-sensitive-data-to-aspnet-and-azure). It is a good practice to keep your data and configuration settings separate. This way to you can change your Twilio SendGrid API key without changing your code. Also, we strongly advise against storing sensitive data directly in your code.
68+
Manage your [Twilio SendGrid API Keys](https://app.sendgrid.com/settings/api_keys) by storing them in Environment Variables or in [Web.config](https://docs.microsoft.com/en-us/aspnet/identity/overview/features-api/best-practices-for-deploying-passwords-and-other-sensitive-data-to-aspnet-and-azure). It is a good practice to keep your data and configuration settings separate. This way you can change your Twilio SendGrid API key without changing your code. Also, we strongly advise against storing sensitive data directly in your code.
6969

7070
Setup Environment Variables using the UI:
7171

@@ -102,7 +102,7 @@ dotnet add package SendGrid
102102
dotnet add package SendGrid.Extensions.DependencyInjection
103103
```
104104

105-
Once you have the Twilio SendGrid library installed, you can include calls to them in your code.
105+
Once you have the Twilio SendGrid library installed, you can include calls to it in your code.
106106
For sample implementations, see the [.NET Core Example](https://github.com/sendgrid/sendgrid-csharp/tree/master/ExampleCoreProject) and the [.NET 4.5.2 Example](https://github.com/sendgrid/sendgrid-csharp/tree/master/ExampleNet45Project) folders.
107107

108108
## Dependencies
@@ -139,7 +139,7 @@ class Program
139139
}
140140
```
141141

142-
After executing the above code, `response.StatusCode` should be `202` and you should have an email in the inbox of the to recipient. You can check the status of your email [in the UI](https://app.sendgrid.com/email_activity?). Alternatively, we can post events to a URL of your choice using our [Event Webhook](https://sendgrid.com/docs/API_Reference/Webhooks/event.html). This gives you data about the events that occur as Twilio SendGrid processes your email.
142+
After executing the above code, `response.StatusCode` should be `202` and you should have an email in the inbox of the `to` recipient. You can check the status of your email [in the UI](https://app.sendgrid.com/email_activity?). Alternatively, we can post events to a URL of your choice using our [Event Webhook](https://sendgrid.com/docs/API_Reference/Webhooks/event.html). This gives you data about the events that occur as Twilio SendGrid processes your email.
143143

144144
For more advanced cases, you can build the SendGridMessage object yourself with these minimum required settings:
145145

0 commit comments

Comments
 (0)