Skip to content

Commit ff0418b

Browse files
authored
Fix typos (#1791)
* Fix typos * Simplify sentence structure for clarity
1 parent 01028cc commit ff0418b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/essentials/template-syntax.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The mustache tag will be replaced with the value of the `msg` property from the
1818

1919
## Raw HTML
2020

21-
The double mustaches interprets the data as plain text, not HTML. In order to output real HTML, you will need to use the [`v-html` directive](/api/built-in-directives.html#v-html):
21+
The double mustaches interpret the data as plain text, not HTML. In order to output real HTML, you will need to use the [`v-html` directive](/api/built-in-directives.html#v-html):
2222

2323
```vue-html
2424
<p>Using text interpolation: {{ rawHtml }}</p>
@@ -200,7 +200,7 @@ Another example is the `v-on` directive, which listens to DOM events:
200200
<a @click="doSomething"> ... </a>
201201
```
202202

203-
Here the argument is the event name to listen to: `click`. `v-on` is one of the few directives that also have a corresponding shorthand, with its shorthand character being `@`. We will talk about event handling in more detail too.
203+
Here the argument is the event name to listen to: `click`. `v-on` has a corresponding shorthand, namely the `@` character. We will talk about event handling in more detail too.
204204

205205
### Dynamic Arguments
206206

0 commit comments

Comments
 (0)