From 39785fa19b37ee18d74e447ff3dd53531dbafe6b Mon Sep 17 00:00:00 2001 From: Swain Molster Date: Wed, 2 Aug 2023 11:45:47 -0400 Subject: [PATCH] fix up typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66dffc2..d13fc62 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ test('something', async () => { By default, the abstractions in `@lifeomic/delta` (`DynamoStreamHandler` and `SQSMessageHandler`) will process events in parallel. To control the parallelization, specify a `concurrency` value when creating the handler. -These abstractions also guarantee automatically ensure that within a batch of events correct _ordering_ is maintained according to the ordering semantics of the upstream event source, even when processing in parallel. +These abstractions also ensure that within a batch of events correct _ordering_ of events is maintained according to the ordering semantics of the upstream event source, even when processing in parallel. In `DynamoStreamHandler`, events for the same _key_ will always be processed serially -- events from different keys will be processed in parallel.