Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typos in guide documentation #1159

Merged
merged 1 commit into from
Jun 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/content/docs/guide/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const Component = () => <Button>Click me</Button>;

#### Theme object

> For more information you can see the [Stitches theme documention](https://stitches.dev/docs/api#theme)
> For more information you can see the [Stitches theme documentation](https://stitches.dev/docs/api#theme)

```json
{
Expand Down
6 changes: 3 additions & 3 deletions apps/docs/content/docs/guide/nextui-plus-nextjs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ export default MyApp
```


### Cutomizing theme
### Customizing theme

If you intend to customise the default theme object to match your design requirements, you need to extend the `theme`.
If you intend to customize the default theme object to match your design requirements, you need to extend the `theme`.

NextUI provides a `createTheme` function that deep merges the default theme with your customizations.

Expand Down Expand Up @@ -125,4 +125,4 @@ function MyApp({ Component, pageProps }) {
export default MyApp
```

To futher customize the theme, please refer to the <a target="_blank" rel="nofollow" href="https://nextui.org/docs/theme/customize-theme">theming</a> documentation.
To further customize the theme, please refer to the <a target="_blank" rel="nofollow" href="https://nextui.org/docs/theme/customize-theme">theming</a> documentation.
Loading