From eee4efd0e80c2d59e4cd2abd69b69fb966490937 Mon Sep 17 00:00:00 2001 From: Taylor Bryant Date: Sat, 14 Dec 2019 12:56:33 -0600 Subject: [PATCH] Fix typo (change `imperatively` to `imperative`) (#9750) --- packages/next/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/next/README.md b/packages/next/README.md index 1c16abff22a4e..5f9788912b8f3 100644 --- a/packages/next/README.md +++ b/packages/next/README.md @@ -1057,7 +1057,7 @@ export default function MyLink() { } ``` -`router` methods should be only used inside the client side of your app though. In order to prevent any error regarding this subject use the imperatively `prefetch` method in the `useEffect()` hook: +`router` methods should be only used inside the client side of your app though. In order to prevent any error regarding this subject use the imperative `prefetch` method in the `useEffect()` hook: ```jsx import { useRouter } from 'next/router'