fix: typo

This commit is contained in:
Zhicheng Wang 2018-10-28 15:55:38 +08:00
parent 5a9565816f
commit a174798cf8
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ The animation code does the following after styling the views:
* `query(':enter style({ left: '-100%'})` matches the view that is added and hides the newly added view by positioning it to the far left.
`query(':enter style({ left: '-100%'})` 会匹配添加的视图,并通过将其添加到最左侧来隐藏新添加的视图。
`query(':enter style({ left: '-100%'})` 会匹配添加的视图,并通过将其定位在最左侧来隐藏这个新视图。
* Calls `animateChild()` on the view that is leaving, to run its child animations.