From 7793375369e3cb20304d7e7c39b6ade8ba4f7853 Mon Sep 17 00:00:00 2001 From: Aravind M Nair Date: Wed, 29 Jul 2026 01:35:26 +0530 Subject: [PATCH 1/2] Correct typo in processFilter.js comment Fix typo in comment regarding filter application behavior. --- packages/react-native/Libraries/StyleSheet/processFilter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/Libraries/StyleSheet/processFilter.js b/packages/react-native/Libraries/StyleSheet/processFilter.js index daf37ea25537..7f1cdc910bce 100644 --- a/packages/react-native/Libraries/StyleSheet/processFilter.js +++ b/packages/react-native/Libraries/StyleSheet/processFilter.js @@ -83,7 +83,7 @@ export default function processFilter( result.push(filterFunction); } else { // If any primitive is invalid then apply none of the filters. This is how - // web works and makes it clear that something is wrong becuase no + // web works and makes it clear that something is wrong because no // graphical effects are happening. return []; } From eeebca98144a9e0255ecb1afa50ba37e17fad9b6 Mon Sep 17 00:00:00 2001 From: Aravind M Nair Date: Wed, 29 Jul 2026 01:37:34 +0530 Subject: [PATCH 2/2] Fix remaining "becuase" -> "because" typo in processFilter comment The comment appears twice; this fixes the second occurrence missed earlier. --- packages/react-native/Libraries/StyleSheet/processFilter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/Libraries/StyleSheet/processFilter.js b/packages/react-native/Libraries/StyleSheet/processFilter.js index 7f1cdc910bce..50e3e04ef1b7 100644 --- a/packages/react-native/Libraries/StyleSheet/processFilter.js +++ b/packages/react-native/Libraries/StyleSheet/processFilter.js @@ -110,7 +110,7 @@ export default function processFilter( result.push(resultObject); } else { // If any primitive is invalid then apply none of the filters. This is how - // web works and makes it clear that something is wrong becuase no + // web works and makes it clear that something is wrong because no // graphical effects are happening. return []; }