From 4011e0baf76d285c2f582c5e5bb23a8d9d152085 Mon Sep 17 00:00:00 2001 From: patelvin Date: Sat, 23 Aug 2014 17:21:30 -0400 Subject: [PATCH] docs(filter): clarify what filter matches against --- docs/content/tutorial/step_03.ngdoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/content/tutorial/step_03.ngdoc b/docs/content/tutorial/step_03.ngdoc index 383da05bdd1d..a2bcea1f6328 100644 --- a/docs/content/tutorial/step_03.ngdoc +++ b/docs/content/tutorial/step_03.ngdoc @@ -68,7 +68,8 @@ the DOM to reflect the current state of the model. * Use of the `filter` filter: The {@link ng.filter:filter filter} function uses the -`query` value to create a new array that contains only those records that match the `query`. +`query` value to create a new array that contains only those records that match the `query`. The +match is done against all string property values of the model. `ngRepeat` automatically updates the view in response to the changing number of phones returned by the `filter` filter. The process is completely transparent to the developer.