Skip to content
Merged
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
6 changes: 3 additions & 3 deletions docs/docs/using-mdx.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ MDX using imported components!
Because MDX files *are* components, they can also import each other:

```mdx path="example.mdx"
import License from './license.md' // Assumes an integration is used to compile MDX -> JS.
import License from './license.md' // Assumes an integration is used to compile markdown -> JS.
import Contributing from './docs/contributing.mdx'

# Hello world
Expand Down Expand Up @@ -468,7 +468,7 @@ cumbersome.
Like so:

```mdx path="post.mdx"
import License from './license.md' // Assumes an integration is used to compile MDX -> JS.
import License from './license.md' // Assumes an integration is used to compile markdown -> JS.
import Contributing from './docs/contributing.mdx'

# Hello world
Expand Down Expand Up @@ -517,7 +517,7 @@ Set it up like so:
Now you can remove the explicit and verbose component passing:

```diff
import License from './license.md' // Assumes an integration is used to compile MDX -> JS.
import License from './license.md' // Assumes an integration is used to compile markdown -> JS.
import Contributing from './docs/contributing.mdx'

# Hello world
Expand Down