From a0e284ed0eb733608f65eaf3993e9acd895d6809 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sun, 15 Feb 2015 15:46:04 +0000 Subject: [PATCH] docs(core/formatters): add some dummy code to stop marked plugin from bombing --- modules/angular2/docs/core/03_formatters.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/angular2/docs/core/03_formatters.md b/modules/angular2/docs/core/03_formatters.md index 553a9f5ee2..6081749c92 100644 --- a/modules/angular2/docs/core/03_formatters.md +++ b/modules/angular2/docs/core/03_formatters.md @@ -1,7 +1,7 @@ # Formatters Formatters can be appended on the end of the expressions to translated the value to a different format. Typically used -to controll the stringification of numbers, dates, and other data, but can also be used for ordering, maping, and +to controll the stringification of numbers, dates, and other data, but can also be used for ordering, maping, and reducing arrays. Formatters can be chained. NOTE: Formatters are known as filters in Angular v1. @@ -9,7 +9,7 @@ NOTE: Formatters are known as filters in Angular v1. Formatters syntax is: ``` - +// TODO: provide syntax of formatter here ```