Skip to content

Commit 76eba3d

Browse files
committed
remove double word
1 parent 3653719 commit 76eba3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/guide/directives.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you have not used AngularJS before, you probably don't know what a directive
1919
<div v-text="message"></div>
2020
```
2121

22-
Here the prefix is `v` which is the default. The directive ID is `text` and the the expression is `message`. This directive instructs Vue.js to update the div's `textContent` whenever the `message` property on the Vue instance changes.
22+
Here the prefix is `v` which is the default. The directive ID is `text` and the expression is `message`. This directive instructs Vue.js to update the div's `textContent` whenever the `message` property on the Vue instance changes.
2323

2424
## Inline Expressions
2525

@@ -92,4 +92,4 @@ Some directives don't even expect an attribute value - they simply do something
9292

9393
A full list of empty directives can be found in the [API reference](/api/directives.html#Empty_Directives).
9494

95-
Next, let's talk about [Filters](/guide/filters.html).
95+
Next, let's talk about [Filters](/guide/filters.html).

0 commit comments

Comments
 (0)