From c291ff6b41289aa20131bb722b1d26d09143885f Mon Sep 17 00:00:00 2001 From: "Sebastian \"Sebbie\" Silbermann" Date: Sun, 8 Dec 2024 17:58:35 +0100 Subject: [PATCH] docs: Fix image component API reference parsing (#73658) --- docs/01-app/03-api-reference/02-components/image.mdx | 2 +- docs/02-pages/03-api-reference/01-components/image-legacy.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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'