From d16c6e926c02358cbd51a585daa413cd36099e27 Mon Sep 17 00:00:00 2001 From: sheparddw Date: Fri, 3 Jun 2016 06:20:18 -0700 Subject: [PATCH] Fix typo in ListViewDataSource documentation. Summary: Closes https://github.com/facebook/react-native/pull/7860 Differential Revision: D3384941 Pulled By: javache fbshipit-source-id: 8a9a9c3dbf8f921ee3f6597154347ec102783415 --- Libraries/CustomComponents/ListView/ListViewDataSource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/CustomComponents/ListView/ListViewDataSource.js b/Libraries/CustomComponents/ListView/ListViewDataSource.js index 0f65b1cce..6fdbee7a6 100644 --- a/Libraries/CustomComponents/ListView/ListViewDataSource.js +++ b/Libraries/CustomComponents/ListView/ListViewDataSource.js @@ -145,7 +145,7 @@ class ListViewDataSource { * construction an extractor to get the interesting information was defined * (or the default was used). * - * The `rowIdentities` is is a 2D array of identifiers for rows. + * The `rowIdentities` is a 2D array of identifiers for rows. * ie. [['a1', 'a2'], ['b1', 'b2', 'b3'], ...]. If not provided, it's * assumed that the keys of the section data are the row identities. *