From d84c26a528f3de78d46a6242d5a9f47b2cc8a96b Mon Sep 17 00:00:00 2001 From: spoonraker Date: Wed, 2 Sep 2015 15:12:12 -0500 Subject: [PATCH] docs(tutorial/12 - Applying Animations): describe your change... Grammar improved for clarity --- docs/content/tutorial/step_12.ngdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/tutorial/step_12.ngdoc b/docs/content/tutorial/step_12.ngdoc index 17dd6241244f..7ca444d1b338 100644 --- a/docs/content/tutorial/step_12.ngdoc +++ b/docs/content/tutorial/step_12.ngdoc @@ -239,9 +239,9 @@ The name of the starting class is the name of the event that is fired (like `ent The active class name is the same as the starting class's but with an `-active` suffix. This two-class CSS naming convention allows the developer to craft an animation, beginning to end. -In our example above, elements expand from a height of **0** to **120 pixels** when items are added or moved, -around and collapsing the items before removing them from the list. -There's also a nice fade-in and fade-out effect that also occurs at the same time. All of this is handled +In our example above, elements are expanded from a height of **0** to **120 pixels** when they're added to the +list and are collapsed back down to **0 pixels** before being removed from the list. +There's also a nice fade-in and fade-out effect that occurs at the same time. All of this is handled by the CSS transition declarations at the top of the example code above. Although most modern browsers have good support for [CSS transitions](http://caniuse.com/#feat=css-transitions)