aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/ie.ngdoc
diff options
context:
space:
mode:
authorLeif Halvard Silli2013-10-22 01:42:13 +0200
committerPete Bacon Darwin2013-10-27 21:27:49 +0000
commit8e5e641c0ebb986020458eb68cabda5a457d8a5f (patch)
tree4fe1b5b733c979c2bc363d5797a467cd17fb1aff /docs/content/guide/ie.ngdoc
parentdfccdd5b86a2061c8a21533eae201408fdda73f1 (diff)
downloadangular.js-8e5e641c0ebb986020458eb68cabda5a457d8a5f.tar.bz2
docs(guide/ie): fix typo
The escaping of the colon in the example CSS is incorrect. Replace `ng\\:view {` with `ng\:view {` Closes #4570
Diffstat (limited to 'docs/content/guide/ie.ngdoc')
-rw-r--r--docs/content/guide/ie.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/ie.ngdoc b/docs/content/guide/ie.ngdoc
index 8f65a63b..2634196f 100644
--- a/docs/content/guide/ie.ngdoc
+++ b/docs/content/guide/ie.ngdoc
@@ -164,7 +164,7 @@ To make CSS selectors work with custom elements, the custom element name must be
</script>
<![endif]-->
<style>
- ng\\:view {
+ ng\:view {
display: block;
border: 1px solid red;
}