From 0f9b63fc59bfbc1b152640e186796698bee0d6f4 Mon Sep 17 00:00:00 2001 From: Hannes Date: Mon, 9 Nov 2020 15:37:16 -0800 Subject: [PATCH] Fixed data type of response parameter for put --- products/workers/src/content/runtime-apis/cache.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/products/workers/src/content/runtime-apis/cache.md b/products/workers/src/content/runtime-apis/cache.md index a40fd801ff3ab94..364288a7783952e 100644 --- a/products/workers/src/content/runtime-apis/cache.md +++ b/products/workers/src/content/runtime-apis/cache.md @@ -80,7 +80,7 @@ cache.put(request, response) - `request` string | Request - Either a string or a [`Request`](/runtime-apis/request) object to serve as the key. If a string is passed, it is interpreted as the URL for a new Request object. -- `response` Request +- `response` Response - A [`Response`](/runtime-apis/response) object to store under the given key.