diff --git a/src/content/docs/queues/configuration/javascript-apis.mdx b/src/content/docs/queues/configuration/javascript-apis.mdx
index 4a0eb76a31f2076..226cf54006bd7fd 100644
--- a/src/content/docs/queues/configuration/javascript-apis.mdx
+++ b/src/content/docs/queues/configuration/javascript-apis.mdx
@@ -108,7 +108,7 @@ Optional configuration that applies when sending a message to a queue.
* As of now, this option is for internal use. In the future, `contentType` will be used by alternative consumer types to explicitly mark messages as serialized so they can be consumed in the desired type.
* See [QueuesContentType](#queuescontenttype) for possible values.
-* delaySecondsnumber
+* delaySeconds number
* The number of seconds to [delay a message](/queues/configuration/batching-retries/) for within the queue, before it can be delivered to a consumer.
* Must be an integer between 0 and 43200 (12 hours). Setting this value to zero will explicitly prevent the message from being delayed, even if there is a global (default) delay at the queue level.
@@ -117,7 +117,7 @@ Optional configuration that applies when sending a message to a queue.
Optional configuration that applies when sending a batch of messages to a queue.
-* delaySecondsnumber
+* delaySeconds number
* The number of seconds to [delay messages](/queues/configuration/batching-retries/) for within the queue, before it can be delivered to a consumer.
* Must be a positive integer.
@@ -291,7 +291,7 @@ declare interface QueueRetryOptions {
}
```
-* delaySecondsnumber
+* delaySeconds number
* The number of seconds to [delay a message](/queues/configuration/batching-retries/) for within the queue, before it can be delivered to a consumer.
* Must be a positive integer.