From 72e183630eb93093d60d5b4bb583b79bbb35c11e Mon Sep 17 00:00:00 2001 From: AHEM SINGH Date: Wed, 22 Oct 2025 16:17:16 +0530 Subject: [PATCH] Improve description of SectionList functionality Clarified the explanation of SectionList usage. --- website/versioned_docs/version-0.82/using-a-listview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.82/using-a-listview.md b/website/versioned_docs/version-0.82/using-a-listview.md index cf13fa66a6c..40395bc5501 100644 --- a/website/versioned_docs/version-0.82/using-a-listview.md +++ b/website/versioned_docs/version-0.82/using-a-listview.md @@ -52,7 +52,7 @@ const FlatListBasics = () => { export default FlatListBasics; ``` -If you want to render a set of data broken into logical sections, maybe with section headers, similar to `UITableView` on iOS, then a [SectionList](sectionlist.md) is the way to go. +If you want to render a set of a data of a broken data set into logical sections where it maybe with section headers, similar to `UITableView` on iOS, then a [SectionList](sectionlist.md) is the way to go. ```SnackPlayer name=SectionList%20Basics import React from 'react';