diff --git a/products/workers/src/content/learning/using-durable-objects.md b/products/workers/src/content/learning/using-durable-objects.md index fdec052230666ae..08d1e43a419af9a 100644 --- a/products/workers/src/content/learning/using-durable-objects.md +++ b/products/workers/src/content/learning/using-durable-objects.md @@ -85,7 +85,7 @@ export class DurableObjectExample { } ``` -Each individual storage operation behaves like a database transaction. More complex use cases can wrap multiple storage statements in a transaction. For example, this actor puts a key if and only if its current value matches the provided "If-Match" header value: +Each individual storage operation behaves like a database transaction. More complex use cases can wrap multiple storage statements in a transaction. For example, this Durable Object puts a key if and only if its current value matches the provided "If-Match" header value: ```js export class DurableObjectExample {