diff --git a/src/content/docs/durable-objects/api/alarms.mdx b/src/content/docs/durable-objects/api/alarms.mdx index 8c442aa25bd6432..75d789f483ba0fe 100644 --- a/src/content/docs/durable-objects/api/alarms.mdx +++ b/src/content/docs/durable-objects/api/alarms.mdx @@ -64,8 +64,8 @@ Alarms can be used to build distributed primitives, like queues or batching of w - `retryCount` : The number of times this alarm event has been retried. - `isRetry` : A boolean value to indicate if the alarm has been retried. This value is `true` if this alarm event is a retry. - - - The `alarm()` handler has guaranteed at-least-once execution and will be retried upon failure using exponential backoff, starting at 2 second delays for up to 6 retries. Retries will be performed if the method fails with an uncaught exception. + - Only one instance of `alarm()` will ever run at a given time per Durable Object instance. + - The `alarm()` handler has guaranteed at-least-once execution and will be retried upon failure using exponential backoff, starting at 2 second delays for up to 6 retries. This only applies to the most recent `setAlarm()` call. Retries will be performed if the method fails with an uncaught exception. - This method can be `async`.