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'; 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.