typo in code example (#1093)

First time looking at marko, but I think that `users` should be `user`
This commit is contained in:
Austin Wei 2018-07-21 04:33:13 +08:00 committed by Austin Kelleher
parent 492361c73d
commit ffb5a0b51b

View File

@ -381,7 +381,7 @@ The `key` attribute can be used to pair HTML elements or UI components that are
```marko
<ul>
<for(users in input.users)>
<for(user in input.users)>
<li key=user.id>${user.name}</li>
</for>
</ul>