From 36621402015485613888158dc7ba29f4ff92a7e2 Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Thu, 7 Nov 2013 14:14:57 -0800 Subject: docs(guide/filter): Refactor filter guide docs This refactors the filter guide docs into a single file. Also removes out of date references to the fact that Angular used to enhance Arrays while evaluating expressions. --- docs/content/guide/concepts.ngdoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/content/guide/concepts.ngdoc') diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index d0c2beca..8cf1bb74 100644 --- a/docs/content/guide/concepts.ngdoc +++ b/docs/content/guide/concepts.ngdoc @@ -86,7 +86,7 @@ in the rest of the documentation. Applied to the example above, the markup directs Angular to "take the data we got from the input widgets and multiply them together". -The example above also contains a "{@link dev_guide.templates.filters filter}". +The example above also contains a "{@link filter filter}". A filter formats the value of an expression for display to the user. In the example above, the filter {@link api/ng.filter:currency `currency`} formats a number into an output that looks like money. @@ -144,7 +144,7 @@ allow to enter and calculate the costs in different currencies and also pay the {{invoice.total(c) | currency:c}} - + @@ -244,7 +244,7 @@ Let's refactor our example and move the currency conversion into a service in an {{invoice.total(c) | currency:c}} - + @@ -370,7 +370,7 @@ The following example shows how this is done with Angular: {{invoice.total(c) | currency:c}} - + -- cgit v1.2.3