aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandre2013-11-12 10:48:03 -0800
committerPete Bacon Darwin2013-11-14 14:06:01 +0000
commit9e5cd92fa90c9f0932b69d8df2ee3dfaec4c2cd7 (patch)
treeaa3df55397e6bc213c832cd3afa57ca17a08ab2a
parentc07f1e1c9f7e859b393457fec19b6a7756c51245 (diff)
downloadangular.js-9e5cd92fa90c9f0932b69d8df2ee3dfaec4c2cd7.tar.bz2
docs(misc/faq): fix invalid escaping of character
Backslash is acting as escape character so text is not properly formatted. Closes #4923
-rw-r--r--docs/content/misc/faq.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/misc/faq.ngdoc b/docs/content/misc/faq.ngdoc
index e508019f..93e18daa 100644
--- a/docs/content/misc/faq.ngdoc
+++ b/docs/content/misc/faq.ngdoc
@@ -81,7 +81,7 @@ Yes, Angular can use {@link http://jquery.com/ jQuery} if it's present in your a
application is being bootstrapped. If jQuery is not present in your script path, Angular falls back
to its own implementation of the subset of jQuery that we call {@link api/angular.element jQLite}.
-Due to a change to use `on()`/`off()` rather than `bind()`\`unbind()`, Angular 1.2 only operates with
+Due to a change to use `on()`/`off()` rather than `bind()`/`unbind()`, Angular 1.2 only operates with
jQuery 1.7.1 or above.