Skip to content

Commit da58404

Browse files
01abhishekjainchrisvfritz
authored andcommitted
Update syntax.md (vuejs#1424)
1 parent 8168f5f commit da58404

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
@@ -22,7 +22,7 @@ The most basic form of data binding is text interpolation using the "Mustache" s
2222

2323
The mustache tag will be replaced with the value of the `msg` property on the corresponding data object. It will also be updated whenever the data object's `msg` property changes.
2424

25-
You can also perform one-time interpolations that do not update on data change by using the [v-once directive](../api/#v-once), but keep in mind this will also affect any binding on the same node:
25+
You can also perform one-time interpolations that do not update on data change by using the [v-once directive](../api/#v-once), but keep in mind this will also affect any other bindings on the same node:
2626

2727
``` html
2828
<span v-once>This will never change: {{ msg }}</span>

0 commit comments

Comments
 (0)