aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
diff options
context:
space:
mode:
authorsmarigowda2013-11-12 15:38:17 +0000
committerPete Bacon Darwin2013-11-14 14:04:09 +0000
commitc07f1e1c9f7e859b393457fec19b6a7756c51245 (patch)
treeb98e8a5251ee28f7b78b1ce4c954a8eee623ae66 /docs/content/guide
parentfd7bca22e16b0ecbe1feaf49bab39d9a44b8df01 (diff)
downloadangular.js-c07f1e1c9f7e859b393457fec19b6a7756c51245.tar.bz2
docs(guide/concepts): controllers can also access scope
Closes #4918
Diffstat (limited to 'docs/content/guide')
-rw-r--r--docs/content/guide/concepts.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc
index 6693c4d5..762bc925 100644
--- a/docs/content/guide/concepts.ngdoc
+++ b/docs/content/guide/concepts.ngdoc
@@ -12,7 +12,7 @@ For a more in-depth explanation, have a look at the {@link tutorial/ tutorial}.
|{@link concepts#template Template} | HTML with additional markup |
|{@link concepts#directive Directives} | extend HTML with custom attributes and elements |
|{@link concepts#model Model} | the data that is shown to the user and with which the user interacts |
-|{@link concepts#scope Scope} | context where the model is stored so that directives and expressions can access it |
+|{@link concepts#scope Scope} | context where the model is stored so that controllers, directives and expressions can access it |
|{@link concepts#expression Expressions} | access variables and functions from the scope |
|{@link concepts#compiler Compiler} | parses the template and instantiates directives and expressions |
|{@link concepts#filter Filter} | formats the value of an expression for display to the user |