diff --git a/src/v2/guide/index.md b/src/v2/guide/index.md
index 3c4c827a5d..38a212895d 100644
--- a/src/v2/guide/index.md
+++ b/src/v2/guide/index.md
@@ -151,9 +151,7 @@ There are quite a few other directives, each with its own special functionality.
``` html
- -
+
-
{{ todo.text }}
@@ -164,9 +162,9 @@ var app4 = new Vue({
el: '#app-4',
data: {
todos: [
- { id: 1, text: 'Learn JavaScript' },
- { id: 2, text: 'Learn Vue' },
- { id: 3, text: 'Build something awesome' }
+ { text: 'Learn JavaScript' },
+ { text: 'Learn Vue' },
+ { text: 'Build something awesome' }
]
}
})