From 41a54b148c3b96cac20b1f3de556ed51b2c56663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82?= <23004737+rafrafek@users.noreply.github.com> Date: Mon, 3 Jun 2024 19:50:01 +0200 Subject: [PATCH] chore: fix typo in `queue.ts` comment (#30416) A small typo fix. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk-lib/aws-sqs/lib/queue.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/aws-sqs/lib/queue.ts b/packages/aws-cdk-lib/aws-sqs/lib/queue.ts index f425536f89937..e0e5503c3704c 100644 --- a/packages/aws-cdk-lib/aws-sqs/lib/queue.ts +++ b/packages/aws-cdk-lib/aws-sqs/lib/queue.ts @@ -198,7 +198,7 @@ export interface DeadLetterQueue { readonly queue: IQueue; /** - * The number of times a message can be unsuccesfully dequeued before being moved to the dead-letter queue. + * The number of times a message can be unsuccessfully dequeued before being moved to the dead-letter queue. */ readonly maxReceiveCount: number; }