aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/directive.ngdoc
diff options
context:
space:
mode:
authorMiško Hevery2012-11-05 19:35:31 -0800
committerMiško Hevery2012-11-05 19:35:31 -0800
commit494b527fa7dac9e60f0fd9d29f2f957720a6d69c (patch)
tree75eaf38914ee93ee1b6a998a9e692d00054a7503 /docs/content/guide/directive.ngdoc
parent8ce84cb2eaf34bf084431ba09174be33253abe91 (diff)
downloadangular.js-494b527fa7dac9e60f0fd9d29f2f957720a6d69c.tar.bz2
docs(directive): fix typo
Diffstat (limited to 'docs/content/guide/directive.ngdoc')
-rw-r--r--docs/content/guide/directive.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc
index f355be05..1dbb41d2 100644
--- a/docs/content/guide/directive.ngdoc
+++ b/docs/content/guide/directive.ngdoc
@@ -339,7 +339,7 @@ compiler}. The attributes are:
* `&` or `&attr` - provides a way to execute an expression in the context of the parent scope.
If no `attr` name is specified then the local name and attribute name are same.
Given `<widget my-attr="count = count + value">` and widget definition of
- `scope: { localFn:'increment()' }`, then isolate scope property `localFn` will point to
+ `scope: { localFn:'&myAttr' }`, then isolate scope property `localFn` will point to
a function wrapper for the `increment()` expression. Often it's desirable to pass data from
the isolate scope via an expression and to the parent scope, this can be done by passing a
map of local variable names and values into the expression wrapper fn. For example, if the