diff --git a/docs/01-app/01-getting-started/04-linking-and-navigating.mdx b/docs/01-app/01-getting-started/04-linking-and-navigating.mdx index f23cb603fb026..db0dbb1403455 100644 --- a/docs/01-app/01-getting-started/04-linking-and-navigating.mdx +++ b/docs/01-app/01-getting-started/04-linking-and-navigating.mdx @@ -135,7 +135,7 @@ export default function Loading() { } ``` -Behind the scenes, Next.js will automatically wrap the `page.tsx` contents and in a `` boundary. The prefetched fallback UI will be shown while the route is loading, and swapped for the actual content once ready. +Behind the scenes, Next.js will automatically wrap the `page.tsx` contents in a `` boundary. The prefetched fallback UI will be shown while the route is loading, and swapped for the actual content once ready. > **Good to know**: You can also use [``](https://react.dev/reference/react/Suspense) to create loading UI for nested components.