Skip to content

Commit

Permalink
docs: properly capitalize brands GitHub and SendGrid (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslafy-z authored and childish-sambino committed Jan 8, 2020
1 parent 7c18a23 commit 4501d04
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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

0 comments on commit 4501d04

Please sign in to comment.