diff --git a/src/content/docs/durable-objects/api/sql-storage.mdx b/src/content/docs/durable-objects/api/sql-storage.mdx
index 8c971e9e8db0078..e43d6ebef6ae574 100644
--- a/src/content/docs/durable-objects/api/sql-storage.mdx
+++ b/src/content/docs/durable-objects/api/sql-storage.mdx
@@ -55,7 +55,7 @@ Specifically for Durable Object classes with SQLite storage backend, KV operatio
* `query`:
* The SQL query string to be executed. `query` can contain `?` placeholders for parameter bindings. Multiple SQL statements, separated with a semicolon, can be executed in the `query`. With multiple SQL statements, any parameter bindings are applied to the last SQL statement in the `query`, and the returned cursor is only for the last SQL statement.
-* `bindings`:
+* `...bindings`:
* Optional variable number of arguments that correspond to the `?` placeholders in `query`.
#### Returns