diff --git a/docs/01-app/03-building-your-application/04-caching/index.mdx b/docs/01-app/03-building-your-application/04-caching/index.mdx index 434357efa6e67..8f5327256587a 100644 --- a/docs/01-app/03-building-your-application/04-caching/index.mdx +++ b/docs/01-app/03-building-your-application/04-caching/index.mdx @@ -307,7 +307,7 @@ There are two ways you can invalidate the Full Route Cache: You can opt out of the Full Route Cache, or in other words, dynamically render components for every incoming request, by: - **Using a [Dynamic API](#dynamic-apis)**: This will opt the route out from the Full Route Cache and dynamically render it at request time. The Data Cache can still be used. -- **Using the `dynamic = 'force-dynamic'` or `revalidate = 0` route segment config options**: This will skip the Full Route Cache and the Data Cache. Meaning components will be rendered and data fetched on every incoming request to the server. The Router Cache will still apply as it's a client-side cache. +- **Using the `dynamic = 'force-dynamic'` or `revalidate = 0` route segment config options**: This will skip the Full Route Cache. Meaning components will be rendered and data fetched on every incoming request to the server. The Router Cache will still apply as it's a client-side cache. - **Opting out of the [Data Cache](#data-cache)**: If a route has a `fetch` request that is not cached, this will opt the route out of the Full Route Cache. The data for the specific `fetch` request will be fetched for every incoming request. Other `fetch` requests that do not opt out of caching will still be cached in the Data Cache. This allows for a hybrid of cached and uncached data. ## Client-side Router Cache