diff --git a/docs/migrating/from-gatsby.md b/docs/migrating/from-gatsby.md
index f24ec319..92d7f4dc 100644
--- a/docs/migrating/from-gatsby.md
+++ b/docs/migrating/from-gatsby.md
@@ -81,14 +81,12 @@ import Link from 'next/link'
export default function Home() {
return (
-
- blog
-
+ blog
)
}
```
-Update any import statements, switch `to` to `href`, and add an `` tag as a child of the element.
+Update any import statements, switch `to` to `href`. For versions prior to Next.js version 13, add an `` tag as a child of the Link element.
## Data Fetching
@@ -322,4 +320,4 @@ export default function SEO({ description, title }) {
## Learn more
-Take a look at [this pull request](https://github.com/leerob/gatsby-to-nextjs/pull/1) for more details on how an app can be migrated from Gatsby to Next.js. If you have questions or if this guide didn't work for you, feel free to reach out to our community on [GitHub Discussions](https://github.com/vercel/next.js/discussions).
\ No newline at end of file
+Take a look at [this pull request](https://github.com/leerob/gatsby-to-nextjs/pull/1) for more details on how an app can be migrated from Gatsby to Next.js. If you have questions or if this guide didn't work for you, feel free to reach out to our community on [GitHub Discussions](https://github.com/vercel/next.js/discussions).