diff --git a/src/content/docs/en/reference/modules/astro-assets.mdx b/src/content/docs/en/reference/modules/astro-assets.mdx
index 728daa74bdefe..376e3964171a9 100644
--- a/src/content/docs/en/reference/modules/astro-assets.mdx
+++ b/src/content/docs/en/reference/modules/astro-assets.mdx
@@ -142,7 +142,7 @@ However, both of these properties are required for images stored in your `public
A list of pixel densities to generate for the image.
-The `densities` attribute is not compatible with responsive images using a `layout` property and will be ignored if set.
+The `densities` attribute is not compatible with [responsive images](#responsive-image-properties) with a `layout` prop or `image.layout` config set, and will be ignored if set.
If provided, this value will be used to generate a `srcset` attribute on the `` tag. Do not provide a value for `widths` when using this value.
@@ -293,7 +293,7 @@ import { Image } from 'astro:assets';
`inferSize` can fetch the dimensions of a [remote image from a domain that has not been authorized](/en/guides/images/#authorizing-remote-images), however the image itself will remain unprocessed.
-#### priority
+##### priority
@@ -312,9 +312,9 @@ import myImage from '../assets/my_image.png';
-
-**Type:** `boolean`
-**Default:** `false`
-