Skip to content

docs: fix typos #1834

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

Merged
merged 1 commit into from
Jan 3, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/maintainers.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ These are the most common labels used by maintainers to triage issues, pull requ
| status/completed | Items that are complete and have been merged and/or shipped | |
| status/rejected | This is something we will not be working on. At least, not in the measurable future | |
| status/pending-close-response-required | This issue will be closed soon unless the discussion moves forward | Stale Automation |
| revisit-in-3-months | Blocked issues/PRs that need to be revisited | Often releated to `need-customer-feedback`, prioritization, etc. |
| revisit-in-3-months | Blocked issues/PRs that need to be revisited | Often related to `need-customer-feedback`, prioritization, etc. |
| good-first-issue | Something that is suitable for those who want to start contributing | |
| help-wanted | Tasks you want help from anyone to move forward | Bandwidth, complex topics, etc. |
| need-customer-feedback | Tasks that need more feedback before proceeding | 80/20% rule, uncertain, etc. |
Expand Down
2 changes: 1 addition & 1 deletion docs/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Just like for the feature parity, if you have any feedback or would like to cont

### Improve operational excellence

We continue to work on increasing operational excellence to remove as much undifferentiated heavylifting for maintainers, so that we can focus on delivering features that help you.
We continue to work on increasing operational excellence to remove as much undifferentiated heavy lifting for maintainers, so that we can focus on delivering features that help you.

This means improving our automation workflows, project management, and test coverage.

Expand Down
2 changes: 1 addition & 1 deletion docs/snippets/batch/gettingStartedErrorHandling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const recordHandler = async (record: SQSRecord): Promise<void> => {
logger.info('Processed item', { item });
} else {
// prettier-ignore
throw new InvalidPayload('Payload does not contain minumum required fields'); // (1)!
throw new InvalidPayload('Payload does not contain minimum required fields'); // (1)!
}
};

Expand Down
2 changes: 1 addition & 1 deletion docs/utilities/idempotency.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Install the library in your project
npm i @aws-lambda-powertools/idempotency @aws-sdk/client-dynamodb @aws-sdk/lib-dynamodb
```

While we support Amazon DynamoDB as a persistance layer out of the box, you need to bring your own AWS SDK for JavaScript v3 DynamoDB client.
While we support Amazon DynamoDB as a persistence layer out of the box, you need to bring your own AWS SDK for JavaScript v3 DynamoDB client.


???+ note
Expand Down