diff options
| author | Igor Minar | 2013-12-03 15:38:05 -0800 |
|---|---|---|
| committer | Igor Minar | 2013-12-03 15:44:13 -0800 |
| commit | bb36bc7edf4f87a41d4269b619fc88ba662ef4df (patch) | |
| tree | c285a64936d2a9c0d9c7e72dfc876533957d13cf /src/Angular.js | |
| parent | bf1972dc1e8ffbeaddfa53df1d49bc5a2177f09c (diff) | |
| download | angular.js-bb36bc7edf4f87a41d4269b619fc88ba662ef4df.tar.bz2 | |
style(Angular.js): fix typo in comment
Diffstat (limited to 'src/Angular.js')
| -rw-r--r-- | src/Angular.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Angular.js b/src/Angular.js index f4f83d55..8ee08e48 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -768,7 +768,7 @@ function shallowCopy(src, dst) { for(var key in src) { // shallowCopy is only ever called by $compile nodeLinkFn, which has control over src - // so we don't need to worry hasOwnProperty here + // so we don't need to worry about using our custom hasOwnProperty here if (src.hasOwnProperty(key) && key.substr(0, 2) !== '$$') { dst[key] = src[key]; } |
