From a95f860a966c51239d1959f84fa6cb63fb40a7cf Mon Sep 17 00:00:00 2001 From: Judy Bogart Date: Mon, 5 Aug 2019 12:24:34 -0700 Subject: [PATCH] docs: correct description of animation example (#32009) PR Close #32009 --- aio/content/guide/complex-animation-sequences.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/complex-animation-sequences.md b/aio/content/guide/complex-animation-sequences.md index ed052f34ec..fc3a161816 100644 --- a/aio/content/guide/complex-animation-sequences.md +++ b/aio/content/guide/complex-animation-sequences.md @@ -30,7 +30,7 @@ The Filter/Stagger tab in the live example shows a list of heroes with an introd The following example demonstrates how to use `query()` and `stagger()` functions on the entry of an animated element. -* Use `query()` to look for any element entering or leaving the page. The query specifies elements meeting certain CSS class criteria. +* Use `query()` to look for an element entering the page that meets certain criteria. * For each of these elements, use `style()` to set the same initial style for the element. Make it invisible and use `transform` to move it out of position so that it can slide into place.