From fa341b183c4c3bbdd7ef76566b5f1c89c03d1433 Mon Sep 17 00:00:00 2001 From: Jeremy Morrell Date: Thu, 23 Oct 2025 08:56:52 -0700 Subject: [PATCH] Fix issue that lumps in a note with a list of headers --- src/content/docs/workers/runtime-apis/cache.mdx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/content/docs/workers/runtime-apis/cache.mdx b/src/content/docs/workers/runtime-apis/cache.mdx index 9a0a378ce0c6737..abc0c0328553ecc 100644 --- a/src/content/docs/workers/runtime-apis/cache.mdx +++ b/src/content/docs/workers/runtime-apis/cache.mdx @@ -169,9 +169,10 @@ Our implementation of the Cache API respects the following HTTP headers on the r * Results in a `304` response if a matching response is found with an `ETag` header with a value that matches a value in `If-None-Match`. -* `cache.match()` - * Never sends a subrequest to the origin. If no matching response is found in cache, the promise that `cache.match()` returns is fulfilled with `undefined`. +:::note +`cache.match()` never sends a subrequest to the origin. If no matching response is found in cache, the promise that `cache.match()` returns is fulfilled with `undefined`. +::: #### Errors