From 1f6da8c7d5bb3013707837264048ac1c2a9577dd Mon Sep 17 00:00:00 2001 From: Sasha Rudan Date: Sat, 1 Feb 2020 18:38:47 +0300 Subject: [PATCH] docs: fix typo in router animation (#35100) `output directive` should be written: `outlet directive` PR Close #35100 --- 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 ad61899d68..1973acc64c 100644 --- a/aio/content/guide/route-animations.md +++ b/aio/content/guide/route-animations.md @@ -67,7 +67,7 @@ The `` container has an attribute directive that contains data ab -Here, the `prepareRoute()` method takes the value of the output directive (established through `#outlet="outlet"`) and returns a string value representing the state of the animation based on the custom data of the current active route. You can use this data to control which transition to execute for each route. +Here, the `prepareRoute()` method takes the value of the outlet directive (established through `#outlet="outlet"`) and returns a string value representing the state of the animation based on the custom data of the current active route. You can use this data to control which transition to execute for each route. ## Animation definition