From b45c91d3e760791f0307ddd74a76de4e7691f49f Mon Sep 17 00:00:00 2001 From: Alexandre Moureaux Date: Mon, 11 Sep 2017 16:33:08 -0700 Subject: [PATCH] Fix small typo Summary: Hi guys, A small typo found in the doc :) Closes https://github.com/facebook/react-native/pull/15888 Differential Revision: D5809251 Pulled By: TheSavior fbshipit-source-id: 7a2ca8f2cbca81aa2059ee619a8c6087256e39a6 --- Libraries/Lists/FlatList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Lists/FlatList.js b/Libraries/Lists/FlatList.js index 5c31320ac..d76762b95 100644 --- a/Libraries/Lists/FlatList.js +++ b/Libraries/Lists/FlatList.js @@ -313,7 +313,7 @@ type DefaultProps = typeof defaultProps; * - By default, the list looks for a `key` prop on each item and uses that for the React key. * Alternatively, you can provide a custom `keyExtractor` prop. * - * Also inherets [ScrollView Props](docs/scrollview.html#props), unless it is nested in another FlatList of same orientation. + * Also inherits [ScrollView Props](docs/scrollview.html#props), unless it is nested in another FlatList of same orientation. */ class FlatList extends React.PureComponent, void> { static defaultProps: DefaultProps = defaultProps;