-
Notifications
You must be signed in to change notification settings - Fork 714
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
fixed changes suggested by grammarly #640
Conversation
Codecov Report
@@ Coverage Diff @@
## master #640 +/- ##
=======================================
Coverage 85.03% 85.03%
=======================================
Files 35 35
Lines 1156 1156
Branches 172 172
=======================================
Hits 983 983
Misses 90 90
Partials 83 83 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for picking this up! I've left several comments for nuances not picked up by Grammar.ly that should be reverted or changed to something else.
CODE_OF_CONDUCT.md
Outdated
### Be Respectful | ||
Members of the community are respectful. We're respectful of others, their positions, their skills, their commitments and their efforts. We're respectful of the volunteer efforts that permeate the SendGrid community. We're respectful of the processes outlined in the community, and we work within them. When we disagree, we are courteous in raising our issues. Overall, we're good to each other. We contribute to this community not because we have to, but because we want to. If we remember that, these guidelines will come naturally. | ||
|
||
Members of the community are respectful. We're respectful of others, their positions, their skills, their commitments ,and their efforts. We're respectful of the volunteer efforts that permeate the SendGrid community. We're respectful of the processes outlined in the community, and we work within them. When we disagree, we are courteous in raising our issues. Overall, we're good with each other. We contribute to this community not because we have to, but because we want to. If we remember that, these guidelines will come naturally. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Misplaced space around comma at "commitments ,and their efforts."
CONTRIBUTING.md
Outdated
contain your feature, change, or fix: | ||
|
||
```bash | ||
git checkout -b <topic-branch-name> | ||
``` | ||
|
||
4. Commit your changes in logical chunks. Please adhere to these [git commit | ||
4. Commit your changes in logical chunks. Please adhere to these [git commits |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'commit' in this context is a noun, not a verb. Trailing 's' not needed.
TROUBLESHOOTING.md
Outdated
@@ -95,7 +95,7 @@ If you are using a [requirements file](https://pip.readthedocs.io/en/1.1/require | |||
<a name="versions"></a> | |||
## Versioning Convention | |||
|
|||
We follow the MAJOR.MINOR.PATCH versioning scheme as described by [SemVer.org](http://semver.org). Therefore, we recommend that you always pin (or vendor) the particular version you are working with to your code and never auto-update to the latest version. Especially when there is a MAJOR point release, since that is guaranteed to be a breaking change. Changes are documented in the [CHANGELOG](https://github.com/sendgrid/sendgrid-python/blob/master/CHANGELOG.md) and [releases](https://github.com/sendgrid/sendgrid-python/releases) section. | |||
We follow the MAJOR.MINOR.PATCH versioning scheme as described by [SemVer.org](http://semver.org). Therefore, we recommend that you always pin (or vendor) the particular version you are working with your code and never auto-update to the latest version. Especially when there is a MAJOR point release since that is guaranteed to be a breaking change. Changes are documented in the [CHANGELOG](https://github.com/sendgrid/sendgrid-python/blob/master/CHANGELOG.md) and [releases](https://github.com/sendgrid/sendgrid-python/releases) section. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to "...working with in your code...", feels more natural than the original "to your code". But only removing 'to' is not appropriate.
USAGE.md
Outdated
@@ -70,7 +70,4628 @@ IP Access Management allows you to control which IP addresses can be used to acc | |||
|
|||
For more information, please see our [User Guide](http://sendgrid.com/docs/User_Guide/Settings/ip_access_management.html). | |||
|
|||
### POST /access_settings/whitelist |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this change a mistake?
use_cases/aws.md
Outdated
@@ -2,14 +2,14 @@ | |||
|
|||
This tutorial explains how to set up a simple "Hello Email" app on AWS, using the AWS CodeStar service. | |||
|
|||
We'll be creating a basic web service to send email via SendGrid. The application will run on AWS Lambda, and the "endpoint" will be via AWS API Gateway. | |||
We'll be creating a basic web service to send an email via SendGrid. The application will run on AWS Lambda, and the "endpoint" will be via AWS API Gateway. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'email' is plural in this context, 'an' not needed.
use_cases/aws.md
Outdated
|
||
Once that's done, you've successfully created a CodeStar project! You should be at the dashboard, with a view of the wiki, change log, build pipeline, and application endpoint. | ||
Once that's done, you've successfully created a CodeStar project! You should be at the dashboard, with a view of the wiki, changelog, build a pipeline, and application endpoint. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'build' is a noun in this context, 'a' not needed.
use_cases/aws.md
Outdated
Congratulations, you've just used serverless technology to create an email sending the app in AWS! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'sending' is noun here, 'the' not needed.
use_cases/django.md
Outdated
@@ -1,4 +1,4 @@ | |||
# Create a Django app to send email with SendGrid | |||
# Create a Django app to send an email with SendGrid |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'email' is plural, 'an' not needed.
use_cases/django.md
Outdated
@@ -119,7 +119,7 @@ $ python manage.py migrate | |||
$ python manage.py runserver | |||
``` | |||
|
|||
By default, it starts the development server at `http://127.0.0.1:8000/`. To test if we can send email or not, go to `http://127.0.0.1:8000/sendgrid/`. If it works, we should see the page says "Email Sent!". | |||
By default, it starts the development server at `http://127.0.0.1:8000/`. To test if we can send an email or not, go to `http://127.0.0.1:8000/sendgrid/`. If it works, we should see the page says "Email Sent!". |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'email' is plural, 'an' not needed.
use_cases/flask_heroku.md
Outdated
@@ -1,4 +1,4 @@ | |||
# Create a Flask app to send email with SendGrid | |||
# Create a Flask app to send an email with SendGrid |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'email' is plural, 'an' not needed.
Thanks @xeon-zolt ! Could you please address/explain the large amount of changes to USAGE.md? |
@misterdorm please check again |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Hello @xeon-zolt, Could you please resolve the merge conflicts? Thank you! With Best Regards, Elmer |
Hello @xeon-zolt, |
Hello @xeon-zolt, |
Hello @xeon-zolt, |
Fixes #639
Checklist
Short description of what this PR does: