aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorexex zian2013-06-26 02:28:31 +0530
committerIgor Minar2013-07-02 22:50:52 -0700
commit5f24bb0267418aa194b46c64a7dfcf07484b836d (patch)
tree6f019a112be2094dcb2a6d3354cd0ec2556f2925 /docs
parent52519d45b94d43c6dcd60d0845b1914edf5c743c (diff)
downloadangular.js-5f24bb0267418aa194b46c64a7dfcf07484b836d.tar.bz2
docs(tutorial/step9): formatted Unicode character line
Add tick and cross mark corresponding to their respective unicodes.
Diffstat (limited to 'docs')
-rw-r--r--docs/content/tutorial/step_09.ngdoc3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/content/tutorial/step_09.ngdoc b/docs/content/tutorial/step_09.ngdoc
index 286fa98a..245a51d5 100644
--- a/docs/content/tutorial/step_09.ngdoc
+++ b/docs/content/tutorial/step_09.ngdoc
@@ -37,8 +37,7 @@ angular.module('phonecatFilters', []).filter('checkmark', function() {
</pre>
The name of our filter is "checkmark". The `input` evaluates to either `true` or `false`, and we
-return one of two unicode characters we have chosen to represent true or false (`\u2713` and
-`\u2718`).
+return one of the two unicode characters we have chosen to represent true (`\u2713` -> ✓) or false (`\u2718` -> ✘).
Now that our filter is ready, we need to register the `phonecatFilters` module as a dependency for
our main `phonecat` module.