diff --git a/api/@internal/component/ets/list.d.ts b/api/@internal/component/ets/list.d.ts
index bf31c7fde63fd5298a3dc7b0e47ae81970dbbdaf..c0886ead8fdfe09579d719404782b503e6359262 100644
--- a/api/@internal/component/ets/list.d.ts
+++ b/api/@internal/component/ets/list.d.ts
@@ -1068,7 +1068,8 @@ interface ListOptions {
*
NOTE
*
If this parameter is set to a negative number or a value greater than or equal to the length of the list content area, the default value is used.
*
If this parameter is set to a value less than the width of the list divider, the width of the list divider is used as the spacing.
- *
Child components of List whose visibility attribute is set to None are not displayed, but the spacing above and below them still takes effect.
+ *
Child components of List whose visibility attribute is set to None are not displayed,
+ * but the spacing above and below them still takes effect.
*
*
* @type { ?(number | string) }
diff --git a/api/@internal/component/ets/scroll.d.ts b/api/@internal/component/ets/scroll.d.ts
index 3a6e746f1a4a91cd2ac1cdd28fb7ed5c666d7f28..b6f8b26cdfc73aec620aa9972d23262f15ee828a 100644
--- a/api/@internal/component/ets/scroll.d.ts
+++ b/api/@internal/component/ets/scroll.d.ts
@@ -687,7 +687,8 @@ declare class Scroller {
*
Default value when the container is WaterFlow: ScrollAlign.START
*
NOTE
*
This parameter is only available for the List, Grid, and WaterFlow components.
- * @param { ScrollToIndexOptions } [options] - Options for scrolling to a specified index, for example, an extra offset for the scroll.
Default value: 0, in vp
+ * @param { ScrollToIndexOptions } [options] - Options for scrolling to a specified index,
+ * for example, an extra offset for the scroll.
Default value: 0, in vp
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @atomicservice
diff --git a/api/@internal/component/ets/water_flow.d.ts b/api/@internal/component/ets/water_flow.d.ts
index 11b181bf0fc99181c2bf49c0d58679b90ef84080..17c30654b95c384c08ac60ae94861b73c100dfcc 100644
--- a/api/@internal/component/ets/water_flow.d.ts
+++ b/api/@internal/component/ets/water_flow.d.ts
@@ -44,7 +44,8 @@ declare class SectionOptions {
* The number of FlowItems in this section.
*
* @type { number } itemsCount - Number of water flow items in the section. The value must be a positive integer.
- * If the splice, push, or update APIs receive a section where the itemsCount value is less than 0, these APIs will not be executed.
+ * If the splice, push, or update APIs receive a section
+ * where the itemsCount value is less than 0, these APIs will not be executed.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @atomicservice
@@ -149,7 +150,8 @@ declare class WaterFlowSections {
*
* @param { number } start - Zero-based index at which the changing starts. The value is converted to an integer.
*
NOTE
- *
1. A negative index counts back from the end of the section list. If -WaterFlowSections.length() <= start < 0, start + array.length is used.
+ *
1. A negative index counts back from the end of the section list.
+ * If -WaterFlowSections.length() <= start < 0, start + array.length is used.
*
2. If start < -WaterFlowSections.length(), 0 is used.
*
3. If start >= WaterFlowSections.length(), a new section is added at the end.
* @param { number } [deleteCount] - Number of sections to be deleted from the position specified by start.
@@ -185,8 +187,10 @@ declare class WaterFlowSections {
*
* @param { number } sectionIndex - Zero-based index of the water flow item section to update. The value is converted to an integer.
*
NOTE
- *
1. A negative index counts back from the end of the section list. If -WaterFlowSections.length() <= sectionIndex < 0, sectionIndex + array.length is used.
- *
2. If sectionIndex < -WaterFlowSections.length(), 0 is used.
3. If sectionIndex >= WaterFlowSections.length(), a new section is added at the end.
+ *
1. A negative index counts back from the end of the section list.
+ * If -WaterFlowSections.length() <= sectionIndex < 0, sectionIndex + array.length is used.
+ *
2. If sectionIndex < -WaterFlowSections.length(), 0 is used.
+ * 3. If sectionIndex >= WaterFlowSections.length(), a new section is added at the end.
* @param { SectionOptions } section - New section configuration.
* @returns { boolean } Whether the update was successful.
* @syscap SystemCapability.ArkUI.ArkUI.Full
@@ -248,9 +252,11 @@ declare enum WaterFlowLayoutMode {
*
1. During a non-animated redirection to a distant location, water flow items are laid out forward or backward based on the target position.
* If the user then swipes back to the position prior to the redirection, the layout of the content may not be consistent with its previous state.
* This can lead to misalignment of the top nodes when the user swipes back to the top after the redirection.
- * To counteract this issue, in this layout mode, the layout will be automatically adjusted after reaching the top of the viewport to ensure that the top is aligned.
+ * To counteract this issue, in this layout mode, the layout will be automatically adjusted after reaching the top of
+ * the viewport to ensure that the top is aligned.
* If there are multiple sections, adjustments will be made to the sections within the viewport when scrolling ends.
- *
2. The total offset returned by the currentOffset API of scroller is inaccurate after a redirection or data update. This offset will be recalibrated when the user swipes back to the top.
+ *
2. The total offset returned by the currentOffset API of scroller is inaccurate after a redirection or data update.
+ * This offset will be recalibrated when the user swipes back to the top.
*
3. If a jump action (for example, by calling scrollToIndex without animation or scrollEdge) and
* an input offset (such as from a swipe gesture or a scrolling animation) are both initiated within the same frame, both will be executed.
*
4. If the scrollToIndex API is called without animation to jump to a distant position (beyond the range of visible water flow items in the window),
@@ -906,7 +912,7 @@ declare class WaterFlowAttribute extends ScrollableCommonMethod