aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
diff options
context:
space:
mode:
authorYves Richard2013-11-18 06:12:50 -0700
committerPete Bacon Darwin2013-11-20 11:25:20 +0000
commit8a9816e06ba1c8d60c3b5f5e0cb98cf2ec1112d5 (patch)
tree69d7ac49fcc78c353d7a35ff770439e4a0c1a15f /docs/content/guide
parentc0e10683a6ecbf6682920cd2c2e173ab148dabee (diff)
downloadangular.js-8a9816e06ba1c8d60c3b5f5e0cb98cf2ec1112d5.tar.bz2
docs(guide/compiler): fix typo in isolate scope def
Closes #4999
Diffstat (limited to 'docs/content/guide')
-rw-r--r--docs/content/guide/compiler.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/compiler.ngdoc b/docs/content/guide/compiler.ngdoc
index d1ad3eee..ffc6ea43 100644
--- a/docs/content/guide/compiler.ngdoc
+++ b/docs/content/guide/compiler.ngdoc
@@ -350,7 +350,7 @@ Creating local properties on widget scope creates two problems:
To solve the issue of lack of isolation, the directive declares a new `isolated` scope. An
-isolated scope does not prototypically inherit from the child scope, and therefore we don't have
+isolated scope does not prototypically inherit from the parent scope, and therefore we don't have
to worry about accidentally clobbering any properties.
However `isolated` scope creates a new problem: if a transcluded DOM is a child of the widget