diff --git a/src/content/reference/eslint-plugin-react-hooks/lints/rules-of-hooks.md b/src/content/reference/eslint-plugin-react-hooks/lints/rules-of-hooks.md index a364ab67feb..b5ca88837d7 100644 --- a/src/content/reference/eslint-plugin-react-hooks/lints/rules-of-hooks.md +++ b/src/content/reference/eslint-plugin-react-hooks/lints/rules-of-hooks.md @@ -119,7 +119,7 @@ if (isLoggedIn) { } ``` -Call the hook unconditionally, check condition inside: +Call the hook unconditionally, check the condition inside: ```js // ✅ Condition inside hook