From 6410a621cedc122352ed7453ea920464331fda50 Mon Sep 17 00:00:00 2001 From: GabeDahl <45904434+GabeDahl@users.noreply.github.com> Date: Tue, 22 Nov 2022 14:58:33 -0800 Subject: [PATCH] Fix typo in renderItem usage snippet (#35416) Summary: Fix typo in renderItem usage snippet - TouchableOpacity's JSX closing tag ## Changelog [General] [Fixed] - Message Pull Request resolved: https://github.com/facebook/react-native/pull/35416 Test Plan: N/A - Typo is in a comment Reviewed By: christophpurrer Differential Revision: D41445946 Pulled By: NickGerleman fbshipit-source-id: 147226f9b0ef443908f71d25ccf8063b8c1c6142 --- Libraries/Lists/FlatList.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Lists/FlatList.d.ts b/Libraries/Lists/FlatList.d.ts index 0cb4302f1e..f09464025a 100644 --- a/Libraries/Lists/FlatList.d.ts +++ b/Libraries/Lists/FlatList.d.ts @@ -187,7 +187,7 @@ export interface FlatListProps extends VirtualizedListProps { * _renderItem = ({item}) => ( * this._onPress(item)}> * {item.title} - * + * * ); * ... *