Skip to content

Commit cdd9399

Browse files
Fix documentation typos (facebook#3395)
1 parent ea4f803 commit cdd9399

27 files changed

+29
-29
lines changed

docs/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If you have already installed Node on your system, make sure it is Node 14 or ne
2424

2525
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2626
27-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
27+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2828
2929
<h3>Android development environment</h3>
3030

docs/accessibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ Represents the current value for range-based components, such as sliders and pro
218218

219219
### `aria-valuetext`
220220

221-
Repersents the textual description of the component.
221+
Represents the textual description of the component.
222222

223223
### `aria-modal` <div class="label ios">iOS</div>
224224

docs/image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ A static image to display while loading the image source.
286286

287287
### `fadeDuration` <div class="label android">Android</div>
288288

289-
Fade animation duration in miliseconds.
289+
Fade animation duration in milliseconds.
290290

291291
| Type | Default |
292292
| ------ | ------- |

docs/react-18-and-react-native.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ On iOS, you'll have access to the `concurrentRootEnabled` method on your `AppDel
107107
///
108108
/// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
109109
/// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
110-
/// @return: `true` if the `concurrentRoot` feture is enabled. Otherwise, it returns `false`.
110+
/// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`.
111111
- (BOOL)concurrentRootEnabled
112112
{
113113
// Switch this bool to turn on and off the concurrent root

docs/the-new-architecture/backward-compatibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import NewArchitectureWarning from '../\_markdown-new-architecture-warning.mdx';
99

1010
Creating a backward compatible module is important to provide a library that works in both the **Old Architecture** and the **New Architecture**. Not all the users of your library will immediately jump on the New Architecture ship: it is a good thing that they will be able to use your library even if they are still using the old architecture.
1111

12-
The trick to create a good backward compatible module is to minimize the changes required to adopt the new version. In that way, users of the module can smoothly move to the new version and migrate to the New Architecture when they are ready, ideally by issueing one different command.
12+
The trick to create a good backward compatible module is to minimize the changes required to adopt the new version. In that way, users of the module can smoothly move to the new version and migrate to the New Architecture when they are ready, ideally by issuing one different command.
1313

1414
To achieve this result, we have to perform few changes in our **Turbo Native Module** and **Fabric Native Component** configurations. The steps we have to follow are:
1515

1616
1. **Update the installation configuration** to avoid using code that is not needed by the Old Architecture.
1717
1. **Update the code** to support both architectures. Both Android and iOS build pipelines gives you mechanism to provide a library that will compile with the correct React Native Architecture.
18-
1. **Configure the specs to load the proper implementation**, so that the JavaScript layer leverages the New Architecture whan it is available.
18+
1. **Configure the specs to load the proper implementation**, so that the JavaScript layer leverages the New Architecture when it is available.
1919

2020
:::info
2121
The next sections requires that you are familiar with the [Pillars](pillars) of the **New Architecture**.

docs/touchablewithoutfeedback.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ Represents the current value for range-based components, such as sliders and pro
251251

252252
### `aria-valuetext`
253253

254-
Repersents the textual description of the component. Has precedence over the `text` value in the `accessibilityValue` prop.
254+
Represents the textual description of the component. Has precedence over the `text` value in the `accessibilityValue` prop.
255255

256256
| Type |
257257
| ------ |

website/versioned_docs/version-0.60/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you have already installed Node on your system, make sure it is Node 10 or ne
2020

2121
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2222
23-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
23+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2424
2525
<h3>Android development environment</h3>
2626

website/versioned_docs/version-0.61/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you have already installed Node on your system, make sure it is Node 10 or ne
2020

2121
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2222
23-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
23+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2424
2525
<h3>Android development environment</h3>
2626

website/versioned_docs/version-0.62/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you have already installed Node on your system, make sure it is Node 10 or ne
2020

2121
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2222
23-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
23+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2424
2525
<h3>Android development environment</h3>
2626

website/versioned_docs/version-0.63/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you have already installed Node on your system, make sure it is Node 10 or ne
2222

2323
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2424
25-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
25+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2626
2727
<h3>Android development environment</h3>
2828

website/versioned_docs/version-0.64/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you have already installed Node on your system, make sure it is Node 12 or ne
2222

2323
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2424
25-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
25+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2626
2727
<h3>Android development environment</h3>
2828

website/versioned_docs/version-0.64/image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ A static image to display while loading the image source.
271271

272272
### `fadeDuration` <div class="label android">Android</div>
273273

274-
Fade animation duration in miliseconds.
274+
Fade animation duration in milliseconds.
275275

276276
| Type | Default |
277277
| ------ | ------- |

website/versioned_docs/version-0.65/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you have already installed Node on your system, make sure it is Node 12 or ne
2222

2323
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2424
25-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
25+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2626
2727
<h3>Android development environment</h3>
2828

website/versioned_docs/version-0.65/image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ A static image to display while loading the image source.
273273

274274
### `fadeDuration` <div class="label android">Android</div>
275275

276-
Fade animation duration in miliseconds.
276+
Fade animation duration in milliseconds.
277277

278278
| Type | Default |
279279
| ------ | ------- |

website/versioned_docs/version-0.66/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you have already installed Node on your system, make sure it is Node 12 or ne
2222

2323
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2424
25-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
25+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2626
2727
<h3>Android development environment</h3>
2828

website/versioned_docs/version-0.66/image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ A static image to display while loading the image source.
273273

274274
### `fadeDuration` <div class="label android">Android</div>
275275

276-
Fade animation duration in miliseconds.
276+
Fade animation duration in milliseconds.
277277

278278
| Type | Default |
279279
| ------ | ------- |

website/versioned_docs/version-0.67/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you have already installed Node on your system, make sure it is Node 12 or ne
2222

2323
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2424
25-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
25+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2626
2727
<h3>Android development environment</h3>
2828

website/versioned_docs/version-0.67/image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ A static image to display while loading the image source.
273273

274274
### `fadeDuration` <div class="label android">Android</div>
275275

276-
Fade animation duration in miliseconds.
276+
Fade animation duration in milliseconds.
277277

278278
| Type | Default |
279279
| ------ | ------- |

website/versioned_docs/version-0.68/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you have already installed Node on your system, make sure it is Node 14 or ne
2222

2323
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2424
25-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
25+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2626
2727
<h3>Android development environment</h3>
2828

website/versioned_docs/version-0.68/image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ A static image to display while loading the image source.
273273

274274
### `fadeDuration` <div class="label android">Android</div>
275275

276-
Fade animation duration in miliseconds.
276+
Fade animation duration in milliseconds.
277277

278278
| Type | Default |
279279
| ------ | ------- |

website/versioned_docs/version-0.69/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you have already installed Node on your system, make sure it is Node 14 or ne
2222

2323
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2424
25-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
25+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2626
2727
<h3>Android development environment</h3>
2828

website/versioned_docs/version-0.69/image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ A static image to display while loading the image source.
273273

274274
### `fadeDuration` <div class="label android">Android</div>
275275

276-
Fade animation duration in miliseconds.
276+
Fade animation duration in milliseconds.
277277

278278
| Type | Default |
279279
| ------ | ------- |

website/versioned_docs/version-0.69/react-18-and-react-native.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ On iOS, you'll have access to the `concurrentRootEnabled` method on your `AppDel
104104
///
105105
/// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
106106
/// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
107-
/// @return: `true` if the `concurrentRoot` feture is enabled. Otherwise, it returns `false`.
107+
/// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`.
108108
- (BOOL)concurrentRootEnabled
109109
{
110110
// Switch this bool to turn on and off the concurrent root

website/versioned_docs/version-0.70/_getting-started-windows-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If you have already installed Node on your system, make sure it is Node 14 or ne
2424

2525
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2626
27-
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the lastest releases of Gradle](https://gradle.org/releases/).
27+
> If you're using the latest version of Java Development Kit, you'll need to change the Gradle version of your project so it can recognize the JDK. You can do that by going to `{project root folder}\android\gradle\wrapper\gradle-wrapper.properties` and changing the `distributionUrl` value to upgrade the Gradle version. You can check out [here the latest releases of Gradle](https://gradle.org/releases/).
2828
2929
<h3>Android development environment</h3>
3030

website/versioned_docs/version-0.70/image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ A static image to display while loading the image source.
273273

274274
### `fadeDuration` <div class="label android">Android</div>
275275

276-
Fade animation duration in miliseconds.
276+
Fade animation duration in milliseconds.
277277

278278
| Type | Default |
279279
| ------ | ------- |

website/versioned_docs/version-0.70/react-18-and-react-native.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ On iOS, you'll have access to the `concurrentRootEnabled` method on your `AppDel
107107
///
108108
/// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
109109
/// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
110-
/// @return: `true` if the `concurrentRoot` feture is enabled. Otherwise, it returns `false`.
110+
/// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`.
111111
- (BOOL)concurrentRootEnabled
112112
{
113113
// Switch this bool to turn on and off the concurrent root

0 commit comments

Comments
 (0)