Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Titus <tituswormer@gmail.com>
  • Loading branch information
wooorm authored Jul 16, 2024
1 parent a5d0f44 commit e5d01a0
Showing 1 changed file with 3 additions and 3 deletions.
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.mdx' // 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.mdx' // 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.mdx' // 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

0 comments on commit e5d01a0

Please sign in to comment.