From ef2318200ce9e4d72f4bd458e2f294b976b808ec Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 17 Mar 2022 13:51:18 -0400 Subject: [PATCH] Add missing comma --- docs/api-reference/next/image.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api-reference/next/image.md b/docs/api-reference/next/image.md index e9c54b323e62..2e75c38e14e7 100644 --- a/docs/api-reference/next/image.md +++ b/docs/api-reference/next/image.md @@ -52,7 +52,7 @@ The `width` property can represent either the _rendered_ width or _original_ wid When using `layout="intrinsic"`, `layout="fixed"`, or `layout="raw"` without `sizes`, the `width` property represents the _rendered_ width in pixels, so it will affect how large the image appears. -When using `layout="responsive"`, `layout="fill"`, or `layout="raw"` with `sizes`, the `width` property represents the _original_ width in pixels so it will only affect the aspect ratio. +When using `layout="responsive"`, `layout="fill"`, or `layout="raw"` with `sizes`, the `width` property represents the _original_ width in pixels, so it will only affect the aspect ratio. The `width` property is required, except for [statically imported images](#local-images), or those with `layout="fill"`. @@ -62,7 +62,7 @@ The `height` property can represent either the _rendered_ height or _original_ h When using `layout="intrinsic"`, `layout="fixed"`, or `layout="raw"` without `sizes`, the `height` property represents the _rendered_ height in pixels, so it will affect how large the image appears. -When using `layout="responsive"`, `layout="fill"`, or `layout="raw"` with `sizes`, the `height` property represents the _original_ height in pixels so it will only affect the aspect ratio. +When using `layout="responsive"`, `layout="fill"`, or `layout="raw"` with `sizes`, the `height` property represents the _original_ height in pixels, so it will only affect the aspect ratio. The `height` property is required, except for [statically imported images](#local-images), or those with `layout="fill"`.