From 9c60961534286eb0a369dba401de2940d763585e Mon Sep 17 00:00:00 2001 From: Donald Hruska Date: Thu, 3 May 2018 15:56:05 -0500 Subject: [PATCH] Remove extraneous character in react-native types Remove extraneous `}` in `FlatList` `renderItem` definition --- types/react-native/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index 3da848137d..756ef2b340 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -3700,7 +3700,7 @@ export interface FlatListProps extends VirtualizedListProps { * ``` * _renderItem = ({item}) => ( * this._onPress(item)}> - * {item.title}} + * {item.title} * * ); * ...