diff --git a/docs/maintainers.md b/docs/maintainers.md index b7b78dd7a9..dd61ea09aa 100644 --- a/docs/maintainers.md +++ b/docs/maintainers.md @@ -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. | diff --git a/docs/roadmap.md b/docs/roadmap.md index 1774b5323f..05942052ca 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -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. diff --git a/docs/snippets/batch/gettingStartedErrorHandling.ts b/docs/snippets/batch/gettingStartedErrorHandling.ts index 20b2b32f60..3f36c18e62 100644 --- a/docs/snippets/batch/gettingStartedErrorHandling.ts +++ b/docs/snippets/batch/gettingStartedErrorHandling.ts @@ -28,7 +28,7 @@ const recordHandler = async (record: SQSRecord): Promise => { 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)! } }; diff --git a/docs/utilities/idempotency.md b/docs/utilities/idempotency.md index 65852c06ca..d0268890c7 100644 --- a/docs/utilities/idempotency.md +++ b/docs/utilities/idempotency.md @@ -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