Skip to content

Commit 3653719

Browse files
committed
reword
1 parent dbae1d6 commit 3653719

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Prefixed HTML attributes that tell Vue.js to do something about a DOM element.
6363
<div v-text="message"></div>
6464
```
6565

66-
Here the div element has a `v-text` directive with the value `message`. What it does is telling Vue.js to keep the div's textContent in sync with the Vue instance's `message` property.
66+
Here the div element has a `v-text` directive with the value `message`. This tells Vue.js to keep the div's textContent in sync with the Vue instance's `message` property.
6767

6868
Directives can encapsulate arbitrary DOM manipulations. For example `v-attr` manipulates an element's attributes, `v-repeat` clones an element based on an Array, `v-on` attaches event listeners... we will cover them later.
6969

0 commit comments

Comments
 (0)