From 75ed1dd49e4142d01e4d61ff7a677b505041c059 Mon Sep 17 00:00:00 2001 From: Yuta Okazaki Date: Thu, 14 May 2015 09:45:38 -0700 Subject: [PATCH] Fix typo of function name in ListView documentation Summary: When I read documents, I usually 'search within page' to see where they talk about specific things. So I found this fix to be pretty useful. Hope it'll be merged! Closes https://github.com/facebook/react-native/pull/1146 Github Author: Yuta Okazaki Test Plan: Imported from GitHub, without a `Test Plan:` line. --- Libraries/CustomComponents/ListView/ListView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/CustomComponents/ListView/ListView.js b/Libraries/CustomComponents/ListView/ListView.js index 0a03bd38bf9558..abec1a6e086c03 100644 --- a/Libraries/CustomComponents/ListView/ListView.js +++ b/Libraries/CustomComponents/ListView/ListView.js @@ -87,7 +87,7 @@ var SCROLLVIEW_REF = 'listviewscroll'; * smoothly while dynamically loading potentially very large (or conceptually * infinite) data sets: * - * * Only re-render changed rows - the hasRowChanged function provided to the + * * Only re-render changed rows - the rowHasChanged function provided to the * data source tells the ListView if it needs to re-render a row because the * source data has changed - see ListViewDataSource for more details. *