From bab98d9c9df2eea2ab3b90f4a7367b4facb3c86e Mon Sep 17 00:00:00 2001 From: Broda Noel Date: Tue, 18 Apr 2023 09:45:55 -0700 Subject: [PATCH] Fix typo (#36956) Summary: Fixing a simple typo ## Changelog: Not applicable Pull Request resolved: https://github.com/facebook/react-native/pull/36956 Test Plan: Not applicable Reviewed By: NickGerleman Differential Revision: D45085878 Pulled By: cortinico fbshipit-source-id: 2b338c7a68cdbc38da85d74acaae3854df561cfe --- packages/virtualized-lists/Lists/VirtualizedList.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/virtualized-lists/Lists/VirtualizedList.d.ts b/packages/virtualized-lists/Lists/VirtualizedList.d.ts index fc000b5f15caeb..a2740604155767 100644 --- a/packages/virtualized-lists/Lists/VirtualizedList.d.ts +++ b/packages/virtualized-lists/Lists/VirtualizedList.d.ts @@ -267,7 +267,7 @@ export interface VirtualizedListWithoutRenderItemProps /** * 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 | undefined;