From d9b693bb7aae297b4c9afbe9d0493e2fbb6a5e99 Mon Sep 17 00:00:00 2001 From: Mike Haas Date: Wed, 2 Jul 2014 10:49:36 -0400 Subject: [PATCH] docs($compile): fix minor typo Closes #8048 --- src/ng/compile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index aaef78ea..5605f7e4 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -162,7 +162,7 @@ * local name. Given `` and widget definition of * `scope: { localFn:'&myAttr' }`, then isolate scope property `localFn` will point to * a function wrapper for the `count = count + value` expression. Often it's desirable to - * pass data from the isolated scope via an expression and to the parent scope, this can be + * pass data from the isolated scope via an expression 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 expression is `increment(amount)` then we can specify the amount value * by calling the `localFn` as `localFn({amount: 22})`.