diff --git a/Libraries/CustomComponents/Lists/FlatList.js b/Libraries/CustomComponents/Lists/FlatList.js index 354c6a5ff49001..84869a6dc69e0a 100644 --- a/Libraries/CustomComponents/Lists/FlatList.js +++ b/Libraries/CustomComponents/Lists/FlatList.js @@ -102,7 +102,7 @@ type OptionalProps = { */ keyExtractor: (item: ItemT, index: number) => string, /** - * Multiple columns can only be rendered with `horizontal={false}`` and will zig-zag like a + * Multiple columns can only be rendered with `horizontal={false}` and will zig-zag like a * `flexWrap` layout. Items should all be the same height - masonry layouts are not supported. */ numColumns: number, @@ -164,8 +164,9 @@ type DefaultProps = typeof defaultProps; * - Separator support. * - Pull to Refresh. * - Scroll loading. + * - ScrollToIndex support. * - * If you need section support, use [``](/react-native/docs/sectionlist.html). + * If you need section support, use [``](docs/sectionlist.html). * * Minimal Example: * @@ -174,7 +175,7 @@ type DefaultProps = typeof defaultProps; * renderItem={({item}) => {item.key}} * /> * - * This is a convenience wrapper around [``](/react-native/docs/virtualizedlist.html), + * This is a convenience wrapper around [``](docs/virtualizedlist.html), * and thus inherits the following caveats: * * - Internal state is not preserved when content scrolls out of the render window. Make sure all