Skip to content

Commit d2c80fc

Browse files
authored
fix additional typos (#1834)
1 parent 1811ec8 commit d2c80fc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Diff for: docs/maintainers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ These are the most common labels used by maintainers to triage issues, pull requ
7979
| status/completed | Items that are complete and have been merged and/or shipped | |
8080
| status/rejected | This is something we will not be working on. At least, not in the measurable future | |
8181
| status/pending-close-response-required | This issue will be closed soon unless the discussion moves forward | Stale Automation |
82-
| revisit-in-3-months | Blocked issues/PRs that need to be revisited | Often releated to `need-customer-feedback`, prioritization, etc. |
82+
| revisit-in-3-months | Blocked issues/PRs that need to be revisited | Often related to `need-customer-feedback`, prioritization, etc. |
8383
| good-first-issue | Something that is suitable for those who want to start contributing | |
8484
| help-wanted | Tasks you want help from anyone to move forward | Bandwidth, complex topics, etc. |
8585
| need-customer-feedback | Tasks that need more feedback before proceeding | 80/20% rule, uncertain, etc. |

Diff for: docs/roadmap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Just like for the feature parity, if you have any feedback or would like to cont
4444

4545
### Improve operational excellence
4646

47-
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.
47+
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.
4848

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

Diff for: docs/snippets/batch/gettingStartedErrorHandling.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const recordHandler = async (record: SQSRecord): Promise<void> => {
2828
logger.info('Processed item', { item });
2929
} else {
3030
// prettier-ignore
31-
throw new InvalidPayload('Payload does not contain minumum required fields'); // (1)!
31+
throw new InvalidPayload('Payload does not contain minimum required fields'); // (1)!
3232
}
3333
};
3434

Diff for: docs/utilities/idempotency.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Install the library in your project
5656
npm i @aws-lambda-powertools/idempotency @aws-sdk/client-dynamodb @aws-sdk/lib-dynamodb
5757
```
5858

59-
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.
59+
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.
6060

6161

6262
???+ note

0 commit comments

Comments
 (0)