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