From 34d52639faf85b18c382b4a91eb7dc5c3bfcab68 Mon Sep 17 00:00:00 2001
From: WuMingDao <146366930+WuMingDao@users.noreply.github.com>
Date: Sun, 17 Aug 2025 10:46:03 +0800
Subject: [PATCH] docs: fix dead link on synchronizing-with-effects.md
---
src/content/learn/synchronizing-with-effects.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/learn/synchronizing-with-effects.md b/src/content/learn/synchronizing-with-effects.md
index 85c2f3b4e2..fa5f0aad42 100644
--- a/src/content/learn/synchronizing-with-effects.md
+++ b/src/content/learn/synchronizing-with-effects.md
@@ -994,7 +994,7 @@ React 将第三次渲染时的 `['travel']` 与第二次渲染时的 `['general'
在下面的例子中,表单中渲染了一个 `` 组件。
-使用输入框的 [`focus()`](https://developer.mozilla.org/zh-CN/docs/Web/API/HTMLElement/focus) 方法,让 `MyInput` 在页面上出现时自动聚焦。已经有一个被注释掉的实现,但它并不能正常工作。找出它为什么不起作用,并修复它。如果你熟悉 `autoFocus` 属性,请假装它不存在:我们正在从头开始实现相同的功能。
+使用输入框的 [`focus()`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus) 方法,让 `MyInput` 在页面上出现时自动聚焦。已经有一个被注释掉的实现,但它并不能正常工作。找出它为什么不起作用,并修复它。如果你熟悉 `autoFocus` 属性,请假装它不存在:我们正在从头开始实现相同的功能。