Skip to content

Commit d9e343b

Browse files
committed
grammar fixes
1 parent fb9ece2 commit d9e343b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/transitions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ new Vue({
704704

705705
As it's transitioning between the "on" button and the "off" button, both buttons are rendered - one transitioning out while the other transitions in. This is the default behavior of `<transition>` - entering and leaving happens simultaneously.
706706

707-
Sometimes, this works great, like when transitioning items are absolutely positioned on top of each other:
707+
Sometimes this works great, like when transitioning items are absolutely positioned on top of each other:
708708

709709
{% raw %}
710710
<div id="no-mode-absolute-demo" class="demo">
@@ -790,7 +790,7 @@ new Vue({
790790
</style>
791791
{% endraw %}
792792

793-
Simultaneous entering and leaving transitions isn't always desirable though, so Vue offers some alternative **transition modes**:
793+
Simultaneous entering and leaving transitions aren't always desirable though, so Vue offers some alternative **transition modes**:
794794

795795
- `in-out`: New element transitions in first, then when complete, the current element transitions out.
796796

0 commit comments

Comments
 (0)