diff --git a/src/guide/list.md b/src/guide/list.md
index e5b0027d47..e21714896c 100644
--- a/src/guide/list.md
+++ b/src/guide/list.md
@@ -244,7 +244,7 @@ When they exist on the same node, `v-if` has a higher priority than `v-for`. Tha
- {{ todo }}
+ {{ todo.name }}
```
@@ -253,7 +253,7 @@ This can be fixed by moving `v-for` to a wrapping `` tag:
```html