aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2013-08-07 09:32:23 -0700
committerIgor Minar2013-08-07 09:32:23 -0700
commite38bf59aab871321182f454a6bad73c991df4228 (patch)
tree9b9cf3bae1787f31920466ba7f0f377bd3f6fef2
parente21f252aa7cf588dee31ea16fdebc047a2d8e456 (diff)
downloadangular.js-e38bf59aab871321182f454a6bad73c991df4228.tar.bz2
docs(minErr): improve $parse/isecfn
-rw-r--r--docs/content/error/parse/isecfn.ngdoc5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/content/error/parse/isecfn.ngdoc b/docs/content/error/parse/isecfn.ngdoc
index 068baeea..417551cb 100644
--- a/docs/content/error/parse/isecfn.ngdoc
+++ b/docs/content/error/parse/isecfn.ngdoc
@@ -3,9 +3,8 @@
@fullName Referencing Function Disallowed
@description
-Occurs when an expression attempts to access the 'Function' object.
+Occurs when an expression attempts to access the 'Function' object (constructor for all functions in JavaScript).
-AngularJS bans access to Function from within expressions since constructor
-access is a known way to execute arbitrary Javascript code.
+Angular bans access to Function from within expressions since constructor access is a known way to execute arbitrary Javascript code.
To resolve this error, avoid Function access.