From a92a2a1cc8b1fc2a3ffc65ed9ac41bbc7671571a Mon Sep 17 00:00:00 2001 From: Duly Bonheur Date: Wed, 17 Aug 2016 11:54:38 -0400 Subject: [PATCH 1/2] docs(ngRepeat): I added the phrase "and by age" on line 236 The example seems to also be filtering by age. It threw me off a bit because I was getting results when I entered numbers in the input field. --- src/ng/directive/ngRepeat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/ngRepeat.js b/src/ng/directive/ngRepeat.js index 213cd3bc583c..bd03cc5da2b1 100644 --- a/src/ng/directive/ngRepeat.js +++ b/src/ng/directive/ngRepeat.js @@ -233,7 +233,7 @@ * * @example * This example uses `ngRepeat` to display a list of people. A filter is used to restrict the displayed - * results by name. New (entering) and removed (leaving) items are animated. + * results by name and by age. New (entering) and removed (leaving) items are animated.
From c33a7fec65c5633a0534017c6abf838488aeeca1 Mon Sep 17 00:00:00 2001 From: Duly Bonheur Date: Wed, 17 Aug 2016 15:34:15 -0400 Subject: [PATCH 2/2] Changed "and" to "or" on line 236 to better describe the ngRepeat example --- src/ng/directive/ngRepeat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/ngRepeat.js b/src/ng/directive/ngRepeat.js index bd03cc5da2b1..0b1240d5c4d4 100644 --- a/src/ng/directive/ngRepeat.js +++ b/src/ng/directive/ngRepeat.js @@ -233,7 +233,7 @@ * * @example * This example uses `ngRepeat` to display a list of people. A filter is used to restrict the displayed - * results by name and by age. New (entering) and removed (leaving) items are animated. + * results by name or by age. New (entering) and removed (leaving) items are animated.