diff --git a/Libraries/Components/ScrollView/ScrollView.d.ts b/Libraries/Components/ScrollView/ScrollView.d.ts index c0d32126d48933..1e0d6f02b509e7 100644 --- a/Libraries/Components/ScrollView/ScrollView.d.ts +++ b/Libraries/Components/ScrollView/ScrollView.d.ts @@ -508,7 +508,7 @@ export interface ScrollViewPropsIOS { scrollsToTop?: boolean | undefined; /** - * When `snapToInterval` is set, `snapToAlignment` will define the relationship of the the snapping to the scroll view. + * When `snapToInterval` is set, `snapToAlignment` will define the relationship of the snapping to the scroll view. * - `start` (the default) will align the snap at the left (horizontal) or top (vertical) * - `center` will align the snap in the center * - `end` will align the snap at the right (horizontal) or bottom (vertical) @@ -564,7 +564,7 @@ export interface ScrollViewPropsAndroid { nestedScrollEnabled?: boolean | undefined; /** - * Fades out the edges of the the scroll content. + * Fades out the edges of the scroll content. * * If the value is greater than 0, the fading edges will be set accordingly * to the current scroll direction and position, diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js index 354d3c75de5775..f4dff151bd3c59 100644 --- a/Libraries/Components/ScrollView/ScrollView.js +++ b/Libraries/Components/ScrollView/ScrollView.js @@ -413,7 +413,7 @@ type AndroidProps = $ReadOnly<{| */ persistentScrollbar?: ?boolean, /** - * Fades out the edges of the the scroll content. + * Fades out the edges of the scroll content. * * If the value is greater than 0, the fading edges will be set accordingly * to the current scroll direction and position, diff --git a/Libraries/Components/Switch/Switch.d.ts b/Libraries/Components/Switch/Switch.d.ts index 6218bdea65016b..263c9845fe985a 100644 --- a/Libraries/Components/Switch/Switch.d.ts +++ b/Libraries/Components/Switch/Switch.d.ts @@ -66,7 +66,7 @@ export interface SwitchProps extends SwitchPropsIOS { disabled?: boolean | undefined; /** - * Invoked with the the change event as an argument when the value changes. + * Invoked with the change event as an argument when the value changes. */ onChange?: | ((event: SwitchChangeEvent) => Promise | void) diff --git a/Libraries/Lists/FlatList.d.ts b/Libraries/Lists/FlatList.d.ts index 2d9bb50247d116..0cb4302f1ee080 100644 --- a/Libraries/Lists/FlatList.d.ts +++ b/Libraries/Lists/FlatList.d.ts @@ -209,7 +209,7 @@ export interface FlatListProps extends VirtualizedListProps { removeClippedSubviews?: boolean | undefined; /** - * Fades out the edges of the the scroll content. + * Fades out the edges of the scroll content. * * If the value is greater than 0, the fading edges will be set accordingly * to the current scroll direction and position, diff --git a/Libraries/Lists/__tests__/VirtualizedList-test.js b/Libraries/Lists/__tests__/VirtualizedList-test.js index d7207c15fa7d6f..343c148b360910 100644 --- a/Libraries/Lists/__tests__/VirtualizedList-test.js +++ b/Libraries/Lists/__tests__/VirtualizedList-test.js @@ -501,7 +501,7 @@ describe('VirtualizedList', () => { // The initial render is specified to be the length of items provided. // Expect that all sticky items (1 every 3) are passed to the underlying - // scrollview, indices offset by 1 to account for the the header component. + // scrollview, indices offset by 1 to account for the header component. expect(component).toMatchSnapshot(); }); diff --git a/React/CxxBridge/RCTCxxBridge.mm b/React/CxxBridge/RCTCxxBridge.mm index c3513ba274c0e8..047a7c2c4eb4c1 100644 --- a/React/CxxBridge/RCTCxxBridge.mm +++ b/React/CxxBridge/RCTCxxBridge.mm @@ -808,7 +808,7 @@ - (void)registerExtraModules NSMutableArray> *extraModules = [NSMutableArray new]; - // Prevent TurboModules from appearing the the NativeModule system + // Prevent TurboModules from appearing the NativeModule system for (id module in appExtraModules) { if (!(RCTTurboModuleEnabled() && [module conformsToProtocol:@protocol(RCTTurboModule)])) { [extraModules addObject:module];