Tilman 2 年之前
父节点
当前提交
0f684f0567
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/guide/src/en/interactivity/dynamic_rendering.md

+ 1 - 1
docs/guide/src/en/interactivity/dynamic_rendering.md

@@ -64,7 +64,7 @@ Example: suppose you have a list of comments you want to render. Then, you can r
 
 ### Inline for loops
 
-Because of how common it is to render a list of items, Dioxus provides a shorthand for this. Instead of using `.iter, `.map`, and `rsx`, you can use a `for` loop with a body of rsx code:
+Because of how common it is to render a list of items, Dioxus provides a shorthand for this. Instead of using `.iter`, `.map`, and `rsx`, you can use a `for` loop with a body of rsx code:
 
 ```rust
 {{#include ../../../examples/rendering_lists.rs:render_list_for_loop}}