From a174798cf8388c4a5b1fa91df6ca950aef563009 Mon Sep 17 00:00:00 2001 From: Zhicheng Wang Date: Sun, 28 Oct 2018 15:55:38 +0800 Subject: [PATCH] fix: typo --- aio/content/guide/route-animations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/route-animations.md b/aio/content/guide/route-animations.md index 0c1bb22aa4..3dd3560dd3 100644 --- a/aio/content/guide/route-animations.md +++ b/aio/content/guide/route-animations.md @@ -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.