From 3dc0716a5d047951cb05f3893634668699aa4806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20Alori?= Date: Thu, 4 Dec 2025 20:24:08 -0300 Subject: [PATCH 1/2] Fix typo in styling-components.md --- packages/website/docs/learn/04-styling-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/website/docs/learn/04-styling-components.md b/packages/website/docs/learn/04-styling-components.md index 2d22a341..a5d12a3b 100644 --- a/packages/website/docs/learn/04-styling-components.md +++ b/packages/website/docs/learn/04-styling-components.md @@ -122,7 +122,7 @@ function MyComponent() { ### Inherited styles -Inheritance is the process by which elements inherit the the values of properties from their ancestors in the DOM tree. Some properties, e.g. `color`, are automatically inherited by the children of the element to which they are applied. Each property defines whether it will be automatically inherited. +Inheritance is the process by which elements inherit the values of properties from their ancestors in the DOM tree. Some properties, e.g. `color`, are automatically inherited by the children of the element to which they are applied. Each property defines whether it will be automatically inherited. React Strict DOM currently only supports inheritance for text style properties on native (these style properties can be applied to any element.) The `inherit` or `unset` value can also be set for any of these properties to restore their default behavior. From d61cca407f56f622a1ba7da840790e398f6c798b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20Alori?= Date: Thu, 4 Dec 2025 20:36:17 -0300 Subject: [PATCH 2/2] Fix typo in 03-creating-components.md --- packages/website/docs/learn/03-creating-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/website/docs/learn/03-creating-components.md b/packages/website/docs/learn/03-creating-components.md index 37c39f86..a471f1f3 100644 --- a/packages/website/docs/learn/03-creating-components.md +++ b/packages/website/docs/learn/03-creating-components.md @@ -97,7 +97,7 @@ This is the same approach used by React Native, so if you are already re-declari ## Suppressing logs on React Native -RSD provides comprehensive runtime warnings and errors to inform developers of about prop and style incompatibilities on native. If there are certain logs that you wish to suppress, this can be done by configuring the [React Native LogBox](https://reactnative.dev/docs/debugging#logbox) at the root of the native app. Messages follow a common structure, which allows for precise or general suppression. For example: +RSD provides comprehensive runtime warnings and errors to inform developers about prop and style incompatibilities on native. If there are certain logs that you wish to suppress, this can be done by configuring the [React Native LogBox](https://reactnative.dev/docs/debugging#logbox) at the root of the native app. Messages follow a common structure, which allows for precise or general suppression. For example: ```js import { LogBox } from 'react-native';