瀏覽代碼

docs: fix typo in `use_effect` description

Brian Donovan 1 年之前
父節點
當前提交
cad19fb59f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/guide/src/en/async/use_effect.md

+ 1 - 1
docs/guide/src/en/async/use_effect.md

@@ -1,6 +1,6 @@
 # UseEffect
 
-[`use_effect`](https://docs.rs/dioxus-hooks/latest/dioxus_hooks/fn.use_effect.html) lets you run a callback that returns a future, which will be re-run when it's [dependencies](#dependencies) change. This is useful to syncrhonize with external events.
+[`use_effect`](https://docs.rs/dioxus-hooks/latest/dioxus_hooks/fn.use_effect.html) lets you run a callback that returns a future, which will be re-run when its [dependencies](#dependencies) change. This is useful to syncrhonize with external events.
 
 ## Dependencies