Skip to content

Commit 3fd0259

Browse files
aravi365meta-codesync[bot]
authored andcommitted
Fix typo "becuase" -> "because" in processFilter comment (#57746)
Summary: Corrects a spelling mistake ("becuase" -> "because") in the explanatory comment for the invalid-primitive short-circuit in `processFilter.js`. The same comment appears twice; both occurrences are fixed. This is a comment-only change with no runtime behavior change. ## Changelog: [INTERNAL] [FIXED] - Fix typo in processFilter.js comment Pull Request resolved: #57746 Test Plan: Comment-only change — no runtime behavior is affected, so there is nothing to exercise at runtime. - The diff touches only comment text: 2 lines, both `becuase` -> `because` (`packages/react-native/Libraries/StyleSheet/processFilter.js`). - No code tokens changed, so existing type-checking, lint, and tests for this file remain valid. Reviewed By: javache Differential Revision: D114031572 Pulled By: fabriziocucci fbshipit-source-id: 3b380170f85f03daef700bd6f776570e59fc6a20
1 parent ece0efe commit 3fd0259

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/react-native/Libraries/StyleSheet/processFilter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export default function processFilter(
8383
result.push(filterFunction);
8484
} else {
8585
// If any primitive is invalid then apply none of the filters. This is how
86-
// web works and makes it clear that something is wrong becuase no
86+
// web works and makes it clear that something is wrong because no
8787
// graphical effects are happening.
8888
return [];
8989
}
@@ -110,7 +110,7 @@ export default function processFilter(
110110
result.push(resultObject);
111111
} else {
112112
// If any primitive is invalid then apply none of the filters. This is how
113-
// web works and makes it clear that something is wrong becuase no
113+
// web works and makes it clear that something is wrong because no
114114
// graphical effects are happening.
115115
return [];
116116
}

0 commit comments

Comments
 (0)