From 445aa9531ac9c61c9c7ade61a5b29139ca378d9b Mon Sep 17 00:00:00 2001 From: qa2me Date: Mon, 18 May 2026 15:23:48 +0400 Subject: [PATCH 1/2] Fix typos in modal.md, timers.md, colors.md --- docs/colors.md | 2 +- docs/modal.md | 2 +- docs/timers.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/colors.md b/docs/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/docs/colors.md +++ b/docs/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/docs/modal.md b/docs/modal.md index d4c8fbde55c..45be2531592 100644 --- a/docs/modal.md +++ b/docs/modal.md @@ -198,7 +198,7 @@ A ref setter that will be assigned an [element node](element-nodes) when mounted ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/docs/timers.md b/docs/timers.md index bf0041d09b4..2ede08c838e 100644 --- a/docs/timers.md +++ b/docs/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - `setImmediate` and `clearImmediate` - `requestAnimationFrame` and `cancelAnimationFrame` -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. From 4645d81e4bb07d042d7162c06251e22586ac3de8 Mon Sep 17 00:00:00 2001 From: qa2me Date: Mon, 18 May 2026 16:02:24 +0400 Subject: [PATCH 2/2] Backport typo fixes to all versioned docs --- website/versioned_docs/version-0.77/colors.md | 2 +- website/versioned_docs/version-0.77/modal.md | 2 +- website/versioned_docs/version-0.77/timers.md | 2 +- website/versioned_docs/version-0.78/colors.md | 2 +- website/versioned_docs/version-0.78/modal.md | 2 +- website/versioned_docs/version-0.78/timers.md | 2 +- website/versioned_docs/version-0.79/colors.md | 2 +- website/versioned_docs/version-0.79/modal.md | 2 +- website/versioned_docs/version-0.79/timers.md | 2 +- website/versioned_docs/version-0.80/colors.md | 2 +- website/versioned_docs/version-0.80/modal.md | 2 +- website/versioned_docs/version-0.80/timers.md | 2 +- website/versioned_docs/version-0.81/colors.md | 2 +- website/versioned_docs/version-0.81/modal.md | 2 +- website/versioned_docs/version-0.81/timers.md | 2 +- website/versioned_docs/version-0.82/colors.md | 2 +- website/versioned_docs/version-0.82/modal.md | 2 +- website/versioned_docs/version-0.82/timers.md | 2 +- website/versioned_docs/version-0.83/colors.md | 2 +- website/versioned_docs/version-0.83/modal.md | 2 +- website/versioned_docs/version-0.83/timers.md | 2 +- website/versioned_docs/version-0.84/colors.md | 2 +- website/versioned_docs/version-0.84/modal.md | 2 +- website/versioned_docs/version-0.84/timers.md | 2 +- website/versioned_docs/version-0.85/colors.md | 2 +- website/versioned_docs/version-0.85/modal.md | 2 +- website/versioned_docs/version-0.85/timers.md | 2 +- website/versioned_docs/version-0.86/colors.md | 2 +- website/versioned_docs/version-0.86/modal.md | 2 +- website/versioned_docs/version-0.86/timers.md | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/website/versioned_docs/version-0.77/colors.md b/website/versioned_docs/version-0.77/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.77/colors.md +++ b/website/versioned_docs/version-0.77/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.77/modal.md b/website/versioned_docs/version-0.77/modal.md index 98bb815dfca..3c1231a6ee0 100644 --- a/website/versioned_docs/version-0.77/modal.md +++ b/website/versioned_docs/version-0.77/modal.md @@ -179,7 +179,7 @@ The `onOrientationChange` callback is called when the orientation changes while ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet` +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet` | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.77/timers.md b/website/versioned_docs/version-0.77/timers.md index 2dbfff20689..f821e262bdb 100644 --- a/website/versioned_docs/version-0.77/timers.md +++ b/website/versioned_docs/version-0.77/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - setImmediate, clearImmediate - requestAnimationFrame, cancelAnimationFrame -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. diff --git a/website/versioned_docs/version-0.78/colors.md b/website/versioned_docs/version-0.78/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.78/colors.md +++ b/website/versioned_docs/version-0.78/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.78/modal.md b/website/versioned_docs/version-0.78/modal.md index 98bb815dfca..3c1231a6ee0 100644 --- a/website/versioned_docs/version-0.78/modal.md +++ b/website/versioned_docs/version-0.78/modal.md @@ -179,7 +179,7 @@ The `onOrientationChange` callback is called when the orientation changes while ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet` +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet` | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.78/timers.md b/website/versioned_docs/version-0.78/timers.md index 2dbfff20689..f821e262bdb 100644 --- a/website/versioned_docs/version-0.78/timers.md +++ b/website/versioned_docs/version-0.78/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - setImmediate, clearImmediate - requestAnimationFrame, cancelAnimationFrame -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. diff --git a/website/versioned_docs/version-0.79/colors.md b/website/versioned_docs/version-0.79/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.79/colors.md +++ b/website/versioned_docs/version-0.79/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.79/modal.md b/website/versioned_docs/version-0.79/modal.md index 98bb815dfca..3c1231a6ee0 100644 --- a/website/versioned_docs/version-0.79/modal.md +++ b/website/versioned_docs/version-0.79/modal.md @@ -179,7 +179,7 @@ The `onOrientationChange` callback is called when the orientation changes while ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet` +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet` | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.79/timers.md b/website/versioned_docs/version-0.79/timers.md index 2dbfff20689..f821e262bdb 100644 --- a/website/versioned_docs/version-0.79/timers.md +++ b/website/versioned_docs/version-0.79/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - setImmediate, clearImmediate - requestAnimationFrame, cancelAnimationFrame -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. diff --git a/website/versioned_docs/version-0.80/colors.md b/website/versioned_docs/version-0.80/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.80/colors.md +++ b/website/versioned_docs/version-0.80/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.80/modal.md b/website/versioned_docs/version-0.80/modal.md index 98bb815dfca..3c1231a6ee0 100644 --- a/website/versioned_docs/version-0.80/modal.md +++ b/website/versioned_docs/version-0.80/modal.md @@ -179,7 +179,7 @@ The `onOrientationChange` callback is called when the orientation changes while ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet` +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet` | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.80/timers.md b/website/versioned_docs/version-0.80/timers.md index 87eaf1f3f80..d118fde66a4 100644 --- a/website/versioned_docs/version-0.80/timers.md +++ b/website/versioned_docs/version-0.80/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - `setImmediate` and `clearImmediate` - `requestAnimationFrame` and `cancelAnimationFrame` -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. diff --git a/website/versioned_docs/version-0.81/colors.md b/website/versioned_docs/version-0.81/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.81/colors.md +++ b/website/versioned_docs/version-0.81/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.81/modal.md b/website/versioned_docs/version-0.81/modal.md index 9c2f677810e..0164407ab6d 100644 --- a/website/versioned_docs/version-0.81/modal.md +++ b/website/versioned_docs/version-0.81/modal.md @@ -190,7 +190,7 @@ This requires you to implement the `onRequestClose` prop to handle the dismissal ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.81/timers.md b/website/versioned_docs/version-0.81/timers.md index 87eaf1f3f80..d118fde66a4 100644 --- a/website/versioned_docs/version-0.81/timers.md +++ b/website/versioned_docs/version-0.81/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - `setImmediate` and `clearImmediate` - `requestAnimationFrame` and `cancelAnimationFrame` -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. diff --git a/website/versioned_docs/version-0.82/colors.md b/website/versioned_docs/version-0.82/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.82/colors.md +++ b/website/versioned_docs/version-0.82/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.82/modal.md b/website/versioned_docs/version-0.82/modal.md index 09e9fc0593f..8e7bb6409b1 100644 --- a/website/versioned_docs/version-0.82/modal.md +++ b/website/versioned_docs/version-0.82/modal.md @@ -198,7 +198,7 @@ A ref setter that will be assigned an [element node](element-nodes) when mounted ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.82/timers.md b/website/versioned_docs/version-0.82/timers.md index 87eaf1f3f80..d118fde66a4 100644 --- a/website/versioned_docs/version-0.82/timers.md +++ b/website/versioned_docs/version-0.82/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - `setImmediate` and `clearImmediate` - `requestAnimationFrame` and `cancelAnimationFrame` -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. diff --git a/website/versioned_docs/version-0.83/colors.md b/website/versioned_docs/version-0.83/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.83/colors.md +++ b/website/versioned_docs/version-0.83/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.83/modal.md b/website/versioned_docs/version-0.83/modal.md index ca04a4cdc8a..c929724719d 100644 --- a/website/versioned_docs/version-0.83/modal.md +++ b/website/versioned_docs/version-0.83/modal.md @@ -198,7 +198,7 @@ A ref setter that will be assigned an [element node](element-nodes) when mounted ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.83/timers.md b/website/versioned_docs/version-0.83/timers.md index 87eaf1f3f80..d118fde66a4 100644 --- a/website/versioned_docs/version-0.83/timers.md +++ b/website/versioned_docs/version-0.83/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - `setImmediate` and `clearImmediate` - `requestAnimationFrame` and `cancelAnimationFrame` -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. diff --git a/website/versioned_docs/version-0.84/colors.md b/website/versioned_docs/version-0.84/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.84/colors.md +++ b/website/versioned_docs/version-0.84/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.84/modal.md b/website/versioned_docs/version-0.84/modal.md index ca04a4cdc8a..c929724719d 100644 --- a/website/versioned_docs/version-0.84/modal.md +++ b/website/versioned_docs/version-0.84/modal.md @@ -198,7 +198,7 @@ A ref setter that will be assigned an [element node](element-nodes) when mounted ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.84/timers.md b/website/versioned_docs/version-0.84/timers.md index 87eaf1f3f80..d118fde66a4 100644 --- a/website/versioned_docs/version-0.84/timers.md +++ b/website/versioned_docs/version-0.84/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - `setImmediate` and `clearImmediate` - `requestAnimationFrame` and `cancelAnimationFrame` -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. diff --git a/website/versioned_docs/version-0.85/colors.md b/website/versioned_docs/version-0.85/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.85/colors.md +++ b/website/versioned_docs/version-0.85/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.85/modal.md b/website/versioned_docs/version-0.85/modal.md index ca04a4cdc8a..c929724719d 100644 --- a/website/versioned_docs/version-0.85/modal.md +++ b/website/versioned_docs/version-0.85/modal.md @@ -198,7 +198,7 @@ A ref setter that will be assigned an [element node](element-nodes) when mounted ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.85/timers.md b/website/versioned_docs/version-0.85/timers.md index 87eaf1f3f80..d118fde66a4 100644 --- a/website/versioned_docs/version-0.85/timers.md +++ b/website/versioned_docs/version-0.85/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - `setImmediate` and `clearImmediate` - `requestAnimationFrame` and `cancelAnimationFrame` -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between. diff --git a/website/versioned_docs/version-0.86/colors.md b/website/versioned_docs/version-0.86/colors.md index 3c106ac6855..78dfcae70ce 100644 --- a/website/versioned_docs/version-0.86/colors.md +++ b/website/versioned_docs/version-0.86/colors.md @@ -68,7 +68,7 @@ React Native only supports lowercase color names. Uppercase color names are not #### `transparent` -This is a shortcut for `rgba(0,0,0,0)`, same like in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). +This is a shortcut for `rgba(0,0,0,0)`, same as in [CSS3](https://www.w3.org/TR/css-color-3/#transparent). #### Color keywords diff --git a/website/versioned_docs/version-0.86/modal.md b/website/versioned_docs/version-0.86/modal.md index d4c8fbde55c..45be2531592 100644 --- a/website/versioned_docs/version-0.86/modal.md +++ b/website/versioned_docs/version-0.86/modal.md @@ -198,7 +198,7 @@ A ref setter that will be assigned an [element node](element-nodes) when mounted ### `onRequestClose` The `onRequestClose` callback is called when the user taps the hardware back button on Android or the menu button on Apple TV. Because of this required prop, be aware that `BackHandler` events will not be emitted as long as the modal is open. -On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet or formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. +On iOS, this callback is called when a Modal is being dismissed using a drag gesture when `presentationStyle` is `pageSheet` or `formSheet`. When `allowSwipeDismissal` is enabled this callback will be called after dismissing the modal. | Type | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/website/versioned_docs/version-0.86/timers.md b/website/versioned_docs/version-0.86/timers.md index bf0041d09b4..2ede08c838e 100644 --- a/website/versioned_docs/version-0.86/timers.md +++ b/website/versioned_docs/version-0.86/timers.md @@ -12,7 +12,7 @@ Timers are an important part of an application and React Native implements the [ - `setImmediate` and `clearImmediate` - `requestAnimationFrame` and `cancelAnimationFrame` -`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on a iPhone 5S). +`requestAnimationFrame(fn)` is not the same as `setTimeout(fn, 0)` - the former will fire after all the frames have flushed, whereas the latter will fire as quickly as possible (over 1000x per second on an iPhone 5S). `setImmediate` is executed at the end of the current JavaScript execution block, right before sending the batched response back to native. Note that if you call `setImmediate` within a `setImmediate` callback, it will be executed right away, it won't yield back to native in between.