Skip to content

Commit 72a34f2

Browse files
Update content/docs/hooks-faq.md
Co-Authored-By: egorzekov <[email protected]>
1 parent 2e69dbd commit 72a34f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/hooks-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ prev: hooks-reference.html
119119
function Example() {
120120
const [count, setCount] = useState(0);
121121
useEffect(() => {
122-
document.title = `Вы нажали ${count} раз`;
122+
document.title = `Вы кликнули ${count} раз`;
123123
});
124124
return (
125125
<div>

0 commit comments

Comments
 (0)