From 18d847fd85b00984426e5dbe2de1a77c0fce6a71 Mon Sep 17 00:00:00 2001 From: Abhishek Ghosh Date: Sat, 13 Jul 2019 01:05:20 -0700 Subject: [PATCH] Fix typo in Virtualized List's maxToRenderPerBatch --- Libraries/Lists/VirtualizedList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Lists/VirtualizedList.js b/Libraries/Lists/VirtualizedList.js index 2abbfe27cdae40..0eb7f375984f11 100644 --- a/Libraries/Lists/VirtualizedList.js +++ b/Libraries/Lists/VirtualizedList.js @@ -160,7 +160,7 @@ type OptionalProps = { listKey?: string, /** * The maximum number of items to render in each incremental render batch. The more rendered at - * once, the better the fill rate, but responsiveness my suffer because rendering content may + * once, the better the fill rate, but responsiveness may suffer because rendering content may * interfere with responding to button taps or other interactions. */ maxToRenderPerBatch: number,