Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ NS_ASSUME_NONNULL_BEGIN
* Returns the object - usually (sub)view - which represents this
* component view in terms of accessibility.
* All accessibility properties will be applied to this object.
* May be overridden in subclass which needs to be accessiblitywise
* May be overridden in subclass which needs to be accessibility-wise
* transparent in favour of some subview.
* Defaults to `self`.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/React/Views/UIView+React.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ typedef struct {
/**
* The (sub)view which represents this view in terms of accessibility.
* ViewManager will apply all accessibility properties directly to this view.
* May be overridden in view subclass which needs to be accessiblitywise
* May be overridden in view subclass which needs to be accessibility-wise
* transparent in favour of some subview.
* Defaults to `self`.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ constructor(private var resolve: Callback?, private var reject: Callback?) : Pro
val stackTrace = throwable.stackTrace
val nativeStackAndroid = WritableNativeArray()

// Build an an Array of StackFrames to match JavaScript:
// Build an Array of StackFrames to match JavaScript:
// iOS: /Libraries/Core/Devtools/parseErrorStack.js -> StackFrame
var i = 0
while (i < stackTrace.size && i < ERROR_STACK_FRAME_LIMIT) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import com.facebook.react.uimanager.events.Event

/**
* An [Event] class used by the [InteropEventEmitter]. This class is just holding the event name and
* the data which is received by the `receiveEvent` method and will be passed over the the
* the data which is received by the `receiveEvent` method and will be passed over the
* [com.facebook.react.uimanager.events.EventDispatcher]
*/
@InteropLegacyArchitecture
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package com.facebook.react.views.virtual

/**
* Represents the the render state of children in the most recent commit.
* Represents the render state of children in the most recent commit.
*
* This enables `ReactVirtualView` to know whether a previously emitted `VirtualViewModeChangeEvent`
* has been committed, in order to only emit subsequent events that would change it.
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/ReactCommon/cxxreact/MoveWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace facebook::react {

/*
NOTE: we keep this internal copy of folly/MoveWrapper.h to unblock
the the workstream of dropping the dependency on folly in RN!
the workstream of dropping the dependency on folly in RN!

For a technical explanation on why we still need this we defer
to the doc in folly/Function.h:
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/flow/dom.js.flow
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ type KeyboardEvent$Init = {
metaKey?: boolean,
/**
* Initializes the `repeat` attribute of the KeyboardEvent object. This
* attribute should be set to true if the the current KeyboardEvent is
* attribute should be set to true if the current KeyboardEvent is
* considered part of a repeating sequence of similar events caused by the
* long depression of any single key, false otherwise.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import type {AccessibilityProps} from 'react-native';
import * as Fantom from '@react-native/fantom';
import * as React from 'react';

const ACCESIBILITY_ROLE_VALUES: $ReadOnlyArray<AccessibilityRole> = [
const ACCESSIBILITY_ROLE_VALUES: $ReadOnlyArray<AccessibilityRole> = [
'none',
'button',
'link',
Expand Down Expand Up @@ -246,7 +246,7 @@ export default function accessibilityPropsSuite(

describe('accessibilityRole', () => {
describe(`value propagation`, () => {
ACCESIBILITY_ROLE_VALUES.forEach(role => {
ACCESSIBILITY_ROLE_VALUES.forEach(role => {
it(`can be set to ${role}`, () => {
expect(
getAccessibilityProp(
Expand Down
2 changes: 1 addition & 1 deletion scripts/releases/upload-release-assets-for-dotslash.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ async function uploadReleaseAssetsForDotSlashFile(
* Given a description of a DotSlash artifact for a particular platform,
* infers the upstream URL ( = where the binary is currently available) and
* release asset URL ( = where the binary will be hosted after the release),
* then downloads the asset from the the upstream URL and uploads it to GitHub
* then downloads the asset from the upstream URL and uploads it to GitHub
* at the desired URL.
*/
async function fetchUpstreamAssetAndUploadToRelease(
Expand Down
Loading