From f9edffc6a70e8b6407402c51c7339738224ad726 Mon Sep 17 00:00:00 2001 From: Hunter Loftis Date: Tue, 20 Oct 2020 13:48:09 -0400 Subject: [PATCH] fix typo, sting -> string --- products/workers/src/content/runtime-apis/durable-objects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/products/workers/src/content/runtime-apis/durable-objects.md b/products/workers/src/content/runtime-apis/durable-objects.md index 9f5b8b78470..886ba6183c4 100644 --- a/products/workers/src/content/runtime-apis/durable-objects.md +++ b/products/workers/src/content/runtime-apis/durable-objects.md @@ -135,7 +135,7 @@ When generating an ID randomly, you need to store the ID somewhere in order to b Unique IDs are unguessable, therefore they can be used in URL-based access control, sometimes known as "anyone with the link can access." -To store the ID in external storage, use its `.toString()` method to convert it into a hex string, and `OBJECT_NAMESPACE.idFromString()` to convert the sting back into an ID later. +To store the ID in external storage, use its `.toString()` method to convert it into a hex string, and `OBJECT_NAMESPACE.idFromString()` to convert the string back into an ID later.