Skip to content

Commit 099e15c

Browse files
Delphnchrisvfritz
authored andcommitted
Fix a simple typo (#1705)
1 parent 4331ff9 commit 099e15c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ These expressions will be evaluated as JavaScript in the data scope of the owner
102102

103103
## Directives
104104

105-
Directives are special attributes with the `v-` prefix. Directive attribute values are expected to be **a single JavaScript expression** (with the exception for `v-for`, which will be discussed later). A directive's job is to reactively apply side effects to the DOM when the value of its expression changes. Let's review the example we saw in the introduction:
105+
Directives are special attributes with the `v-` prefix. Directive attribute values are expected to be **a single JavaScript expression** (with the exception of `v-for`, which will be discussed later). A directive's job is to reactively apply side effects to the DOM when the value of its expression changes. Let's review the example we saw in the introduction:
106106

107107
``` html
108108
<p v-if="seen">Now you see me</p>

0 commit comments

Comments
 (0)