Skip to content

Commit 07d5e2f

Browse files
authored
Refactor to improve wording
Closes GH-2513. Reviewed-by: Remco Haszing <remcohaszing@gmail.com> Reviewed-by: Titus Wormer <tituswormer@gmail.com>
1 parent 95ba33e commit 07d5e2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/docs/using-mdx.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ MDX using imported components!
263263
Because MDX files *are* components, they can also import each other:
264264
265265
```mdx path="example.mdx"
266-
import License from './license.md' // Assumes an integration is used to compile MDX -> JS.
266+
import License from './license.md' // Assumes an integration is used to compile markdown -> JS.
267267
import Contributing from './docs/contributing.mdx'
268268

269269
# Hello world
@@ -468,7 +468,7 @@ cumbersome.
468468
Like so:
469469
470470
```mdx path="post.mdx"
471-
import License from './license.md' // Assumes an integration is used to compile MDX -> JS.
471+
import License from './license.md' // Assumes an integration is used to compile markdown -> JS.
472472
import Contributing from './docs/contributing.mdx'
473473

474474
# Hello world
@@ -517,7 +517,7 @@ Set it up like so:
517517
Now you can remove the explicit and verbose component passing:
518518
519519
```diff
520-
import License from './license.md' // Assumes an integration is used to compile MDX -> JS.
520+
import License from './license.md' // Assumes an integration is used to compile markdown -> JS.
521521
import Contributing from './docs/contributing.mdx'
522522

523523
# Hello world

0 commit comments

Comments
 (0)