From dfc10047709fc9460df3bbc450fa9cdcdc679a63 Mon Sep 17 00:00:00 2001 From: Alejandro Corredor Date: Tue, 28 Nov 2023 16:46:07 -0500 Subject: [PATCH] better docs 2 --- src/sqs.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sqs.ts b/src/sqs.ts index f9c9ac3..57fbeeb 100644 --- a/src/sqs.ts +++ b/src/sqs.ts @@ -27,10 +27,10 @@ export type SQSMessageHandlerConfig = { */ concurrency?: number; /** - * Whether or not to use SQS partial batch responses. Make sure to also - * turn on partial batch responses when configuring your event source mapping - * by specifying ReportBatchItemFailures for the FunctionResponseTypes action. - * For more details see: + * Whether or not to use SQS partial batch responses. If set to true, make + * sure to also turn on partial batch responses when configuring your event + * source mapping by specifying ReportBatchItemFailures for the + * FunctionResponseTypes action. For more details see: * https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#services-sqs-batchfailurereporting */ usePartialBatchResponses?: boolean;