Skip to content

Commit 5f6b11f

Browse files
author
Scott Olmstead
committed
Spelling error
1 parent 45c2811 commit 5f6b11f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/guide/transitions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ With Vue.js' transition system you can apply automatic transition effects when e
77

88
With the directive `v-transition="my-transition"` applied, Vue will:
99

10-
1. Try to find a JavaScript transtion definition registered either through `Vue.transition(id, def)` or passed in with the `transitions` option, with the id `"my-transition"`. If it finds it, it will use that definition object to perform the custom JavaScript based transition.
10+
1. Try to find a JavaScript transition definition registered either through `Vue.transition(id, def)` or passed in with the `transitions` option, with the id `"my-transition"`. If it finds it, it will use that definition object to perform the custom JavaScript based transition.
1111

1212
2. If no custom JavaScript transition is found, it will automatically sniff whether the target element has CSS transitions or CSS animations applied, and add/remove the CSS classes at the appropriate times.
1313

@@ -234,4 +234,4 @@ Then you can use it by providing the transition id to `v-transition`. Note this
234234
<p v-transition="fade"></p>
235235
```
236236

237-
Next: [Building Larger Apps](/guide/application.html).
237+
Next: [Building Larger Apps](/guide/application.html).

0 commit comments

Comments
 (0)