Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit af65df1

Browse files
authored
fix typos to gatsby theme documentation
Fixing a few typos and sentence structure to make the documentation clearer for a native English speaker.
1 parent 9e0e086 commit af65df1

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

src/docs/documentation/references/gatsby-theme.mdx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,17 @@ parent: Documetation
99

1010
> ⚠️ This is experimental and subject to breaking changes.
1111
12-
Gatsby themes is one of the coolest features of all times in Gatsby, with the introduction of theming in Gatsby,
13-
it's easier than ever to get started building a Gatsby site. Shared functionality, data sourcing, and design can all be prepackaged
14-
as a Gatsby Theme that's an NPM install away.
12+
Gatsby themes is one of the coolest features of all time in Gatsby. With the introduction of theming in Gatsby,
13+
it's easier than ever to get started building a Gatsby site. Shared functionality, data sourcing, and design can all be prepackaged as a Gatsby Theme that's an NPM install away.
1514

1615
The enjoy Gatsby theme features, use it as an environment for your documentation and give you more power yet, now we have
1716
a `gatsby-theme-docz` that you can just use Docz as you use in the basic way, but enjoy all features of the Gatsby environment.
1817

19-
If you liked it, but you don't know what is a Gatsby theme, please read [the official docs](https://www.gatsbyjs.org/docs/themes/introduction/)
18+
If you like it, but you don't know what is a Gatsby theme, please read [the official docs](https://www.gatsbyjs.org/docs/themes/introduction/)
2019

2120
## How to use
2221

23-
To use our gatsby theme it's so simple. First of all, just install some packages:
22+
It's so simple to use our Gatsby theme. First of all, just install some packages:
2423

2524
```
2625
yarn add gatsby gatsby-theme-docz docz docz-theme-default -D
@@ -75,15 +74,15 @@ module.exports = {
7574
}
7675
```
7776

78-
> We highly indicate that you set your configuration using `doczrc.js` because of live reload that will change in real time your project settings, if you set your configs using the theme defition you will need to reset your dev server in order to see your changes.
77+
> We highly recommend that you set your configuration using `doczrc.js` because of live reload that will change in real time your project settings, if you set your configs using the theme definition you will need to reset your dev server in order to see your changes.
7978
8079
## Getting data
8180

8281
Using our Gatsby Theme you can enjoy all our hooks to get data for your pages and also get data from Gatsby.
8382
So, you can create isolated pages on Gatsby using gatsby pages and get data from Docz or maybe pass data
8483
for your Docz documents using source from gatsby.
8584

86-
Imagine, that you have your home page insides `/pages` and you want to show all documents parsed from Docz. You can easy get this by doing:
85+
Imagine, that you have your home page inside `/pages` and you want to show all documents parsed from Docz. You can easy get this by doing:
8786

8887
```js
8988
import React from 'react'
@@ -99,7 +98,7 @@ const Home = () => {
9998
export default Home
10099
```
101100

102-
Or you can have a mdx document inside Docz that have data from Gatsby too:
101+
Or you can have a mdx document inside Docz that has data from Gatsby too:
103102

104103
```markdown
105104
---

0 commit comments

Comments
 (0)