From fb37cc92e43d16df7ec7b3ad01e59cf9bbb9b011 Mon Sep 17 00:00:00 2001 From: Andrew Sharp Date: Wed, 16 Dec 2020 11:23:30 -0600 Subject: [PATCH] rename actor to Durable Object --- products/workers/src/content/learning/using-durable-objects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/products/workers/src/content/learning/using-durable-objects.md b/products/workers/src/content/learning/using-durable-objects.md index fdec052230666a..08d1e43a419af9 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 {