diff --git a/apps/docs/docs/learn/05-theming/02-using-variables.mdx b/apps/docs/docs/learn/05-theming/02-using-variables.mdx index af4a0314..ef3cfc25 100644 --- a/apps/docs/docs/learn/05-theming/02-using-variables.mdx +++ b/apps/docs/docs/learn/05-theming/02-using-variables.mdx @@ -14,7 +14,7 @@ import TabItem from '@theme/TabItem'; :::info Note The [`unstable_moduleResolution`](/docs/api/configuration/babel-plugin/#unstable_moduleresolution) -option needs to enabled in the StyleX Babel configuration to enable theming APIs. +option needs to be enabled in the StyleX Babel configuration to enable theming APIs. ::: @@ -42,7 +42,7 @@ export const colors = stylex.defineVars({ }); ``` -These styles can the imported and used like so: +These styles can then imported and used like so: ```tsx title="components/MyComponent.js" import * as stylex from '@stylexjs/stylex'; diff --git a/apps/docs/docs/learn/05-theming/03-creating-themes.mdx b/apps/docs/docs/learn/05-theming/03-creating-themes.mdx index d0282d3b..b1131842 100644 --- a/apps/docs/docs/learn/05-theming/03-creating-themes.mdx +++ b/apps/docs/docs/learn/05-theming/03-creating-themes.mdx @@ -11,7 +11,7 @@ sidebar_position: 3 :::info Note The [`unstable_moduleResolution`](/docs/api/configuration/babel-plugin/#unstable_moduleresolution) -option needs to enabled in the StyleX Babel configuration to enable theming APIs. +option needs to be enabled in the StyleX Babel configuration to enable theming APIs. :::