Procházet zdrojové kódy

Fix typo in PostList example in guide

Dave Rolsky před 3 roky
rodič
revize
a9500f3413
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      docs/guide/src/elements/lists.md

+ 1 - 1
docs/guide/src/elements/lists.md

@@ -74,7 +74,7 @@ struct PostListProps<'a> {
 Next, we're going to define our component:
 
 ```rust
-fn App(cx: Scope<PostList?) -> Element {
+fn App(cx: Scope<PostList>) -> Element {
     // First, we create a new iterator by mapping the post array
     let posts = cx.props.posts.iter().map(|post| rsx!{
         Post {