diff --git a/docs/basic-features/data-fetching.md b/docs/basic-features/data-fetching.md index cf967f1a9c6ea..668d5de8a27dd 100644 --- a/docs/basic-features/data-fetching.md +++ b/docs/basic-features/data-fetching.md @@ -32,7 +32,7 @@ We’ll talk about the three unique Next.js functions you can use to fetch data - [`getStaticPaths`](#getstaticpaths-static-generation) (Static Generation): Specify [dynamic routes](/docs/routing/dynamic-routes.md) to pre-render based on data. - [`getServerSideProps`](#getserversideprops-server-side-rendering) (Server-side Rendering): Fetch data on **each request**. -In addition, we’ll talk briefly about how to do fetch data on the client side. +In addition, we’ll talk briefly about how to fetch data on the client side. ## `getStaticProps` (Static Generation)