From 32a4858f25c5e56504b80c458ce540d9c10a9180 Mon Sep 17 00:00:00 2001 From: qsftw Date: Sat, 2 Aug 2025 15:03:03 +0800 Subject: [PATCH] fix drawing js description Signed-off-by: qsftw --- api/@ohos.graphics.drawing.d.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/@ohos.graphics.drawing.d.ts b/api/@ohos.graphics.drawing.d.ts index bb2cb054f5..73fbec680c 100644 --- a/api/@ohos.graphics.drawing.d.ts +++ b/api/@ohos.graphics.drawing.d.ts @@ -8896,7 +8896,8 @@ declare namespace drawing { * Checks if the 2D rectangular object is empty. * * @param { common2D.Rect } rect - Indicates the Rect object. - * @returns { boolean } - Returns true if the rectangle is empty (left >= right or top >= bottom); returns false otherwise. + * @returns { boolean } - Returns true if the rectangle is empty (left >= right or top >= bottom); + * returns false otherwise. * @static * @syscap SystemCapability.Graphics.Drawing * @crossplatform @@ -8985,7 +8986,8 @@ declare namespace drawing { * * @param { common2D.Rect } rect - Indicates the Rect object. * @param { common2D.Rect } other - Indicates the other Rect object for comparison. - * @returns { boolean } Returns true if left, top, right and bottom of rect and other are equal; returns false otherwise. + * @returns { boolean } Returns true if left, top, right and bottom of rect and other are equal; + * returns false otherwise. * @static * @syscap SystemCapability.Graphics.Drawing * @crossplatform -- Gitee