Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: properly capitalize brands GitHub and SendGrid #742

Merged
merged 4 commits into from
Jan 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ Closes #2
-
-

If you have questions, please send an email to [Twilio SendGrid](mailto:dx@sendgrid.com), or file a Github Issue in this repository.
If you have questions, please send an email to [Twilio SendGrid](mailto:dx@sendgrid.com), or file a GitHub Issue in this repository.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ A software bug is a demonstrable issue in the code base. In order for us to diag

Before you decide to create a new issue, please try the following:

1. Check the Github issues tab if the identified issue has already been reported, if so, please add a +1 to the existing post.
1. Check the GitHub issues tab if the identified issue has already been reported, if so, please add a +1 to the existing post.
2. Update to the latest version of this code and check if issue has already been fixed
3. Copy and fill in the Bug Report Template we have provided below

Expand Down Expand Up @@ -197,4 +197,4 @@ If you have any additional questions, please feel free to [email](mailto:dx@send
<a name="code-reviews"></a>
## Code Reviews

If you can, please look at open PRs and review them. Give feedback and help us merge these PRs much faster! If you don't know how, Github has some [great information on how to review a Pull Request](https://help.github.com/articles/about-pull-request-reviews/).
If you can, please look at open PRs and review them. Give feedback and help us merge these PRs much faster! If you don't know how, GitHub has some [great information on how to review a Pull Request](https://help.github.com/articles/about-pull-request-reviews/).
2 changes: 1 addition & 1 deletion lib/contacts/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Recipients Helper

**This helper allows you to quickly and easily build a subscription form to add contacts to your contactdb in Sendgrid.**
**This helper allows you to quickly and easily build a subscription form to add contacts to your contactdb in SendGrid.**

## Quick Start

Expand Down
4 changes: 2 additions & 2 deletions test/unit/AttachmentsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class AttachmentsTests extends TestCase
public function testWillEncodeNonBase64String() {

$attachment = new Attachment();
$testString = 'Twilio Sendgrid is awesome!';
$testString = 'Twilio SendGrid is awesome!';

$attachment->setContent($testString);

Expand All @@ -36,7 +36,7 @@ public function testWillEncodeNonBase64String() {
public function testWillNotEncodeBase64String() {

$attachment = new Attachment();
$testString = base64_encode('Twilio Sendgrid is awesome!');
$testString = base64_encode('Twilio SendGrid is awesome!');

$attachment->setContent($testString);

Expand Down