diff --git a/apps/docs/docs/learn/04-styling-ui/01-defining-styles.mdx b/apps/docs/docs/learn/04-styling-ui/01-defining-styles.mdx index 4626cfec..d49e467d 100755 --- a/apps/docs/docs/learn/04-styling-ui/01-defining-styles.mdx +++ b/apps/docs/docs/learn/04-styling-ui/01-defining-styles.mdx @@ -142,7 +142,7 @@ const styles = stylex.create({ ## Combining conditions -Your Style Values can be be nested more than one level deep when you need to +Your Style Values can be nested more than one level deep when you need to combine Media Queries and Pseudo Selectors ```tsx diff --git a/apps/docs/docs/learn/06-static-types.mdx b/apps/docs/docs/learn/06-static-types.mdx index db9d504e..47dfcbc0 100755 --- a/apps/docs/docs/learn/06-static-types.mdx +++ b/apps/docs/docs/learn/06-static-types.mdx @@ -157,7 +157,7 @@ import type {StyleXStyles} from '@stylexjs/stylex'; type Props = { ... // Only accept styles for marginTop and nothing else. - // the value for marginTop can only be 0, 4, or 8. + // The value for marginTop can only be 0, 4, or 8. style?: StyleXStyles<{ marginTop: 0 | 4 | 8 | 16 }>, @@ -173,7 +173,7 @@ import type {StyleXStyles} from '@stylexjs/stylex'; type Props = $ReadOnly<{ ... // Only accept styles for marginTop and nothing else. - // the value for marginTop can only be 0, 4, or 8. + // The value for marginTop can only be 0, 4, or 8. style?: StyleXStyles<{ marginTop: 0 | 4 | 8 | 16 }>, diff --git a/apps/docs/docs/learn/index.mdx b/apps/docs/docs/learn/index.mdx index 022f4e5a..aa81265f 100644 --- a/apps/docs/docs/learn/index.mdx +++ b/apps/docs/docs/learn/index.mdx @@ -143,7 +143,7 @@ such as `SolidJS`, `Preact` or `Qwik`. ## Ideal use cases StyleX works well in a wide variety of projects. However, it was designed to meet the -challenges of particular uses cases. +challenges of particular use cases. ### Authoring UI in JavaScript