diff --git a/docs/01-app/03-api-reference/02-components/image.mdx b/docs/01-app/03-api-reference/02-components/image.mdx index a88f328ce8a29..88d4cf03aec54 100644 --- a/docs/01-app/03-api-reference/02-components/image.mdx +++ b/docs/01-app/03-api-reference/02-components/image.mdx @@ -414,7 +414,7 @@ unoptimized = {false} // {false} | {true} When true, the source image will be served as-is from the `src` instead of changing quality, size, or format. Defaults to `false`. -This is useful for images that do not benefit from optimization such as small images (<1KB), vector images (SVG), or animated images (GIF). +This is useful for images that do not benefit from optimization such as small images (less than 1KB), vector images (SVG), or animated images (GIF). ```js import Image from 'next/image' diff --git a/docs/02-pages/03-api-reference/01-components/image-legacy.mdx b/docs/02-pages/03-api-reference/01-components/image-legacy.mdx index bb321a2080a2d..e162ec59cf1ee 100644 --- a/docs/02-pages/03-api-reference/01-components/image-legacy.mdx +++ b/docs/02-pages/03-api-reference/01-components/image-legacy.mdx @@ -315,7 +315,7 @@ const Example = () => { When true, the source image will be served as-is from the `src` instead of changing quality, size, or format. Defaults to `false`. -This is useful for images that do not benefit from optimization such as small images (<1KB), vector images (SVG), or animated images (GIF). +This is useful for images that do not benefit from optimization such as small images (less than 1KB), vector images (SVG), or animated images (GIF). ```js import Image from 'next/image'