Просмотр исходного кода

Fix closure signature for use_ref example in interactivity docs

The example showed the closure accepting a single argument, but it accepts
none.
Dave Rolsky 3 лет назад
Родитель
Сommit
7c2d911fbf
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      docs/guide/src/interactivity/hooks.md

+ 1 - 1
docs/guide/src/interactivity/hooks.md

@@ -140,7 +140,7 @@ fn Child(cx: Scope, name: String) -> Element {
 
 // ✅ Or, use a hashmap with use_ref
 ```rust
-let ages = use_ref(&cx, |_| HashMap::new());
+let ages = use_ref(&cx, || HashMap::new());
 
 names.iter().map(|name| {
     let age = ages.get(name).unwrap();