From 55564f6028df0aef7c5e37299ebcecd9edb32348 Mon Sep 17 00:00:00 2001 From: Chi Kei Chan Date: Mon, 15 Dec 2014 01:23:31 -0800 Subject: [PATCH] docs(error/badname): Fixed Grammatical Error In badname.ngdoc, the phrase 'in a context where it is not allow' is changed to 'in a context where is is not allowed'. The grammatical error made this document slightly confusing. CHANGE: Occurs when you try to use the name `hasOwnProperty` in a context where it is not allowed. --- docs/content/error/ng/badname.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/error/ng/badname.ngdoc b/docs/content/error/ng/badname.ngdoc index ab67236a9d22..c6a38ae7e58e 100644 --- a/docs/content/error/ng/badname.ngdoc +++ b/docs/content/error/ng/badname.ngdoc @@ -3,6 +3,6 @@ @fullName Bad `hasOwnProperty` Name @description -Occurs when you try to use the name `hasOwnProperty` in a context where it is not allow. +Occurs when you try to use the name `hasOwnProperty` in a context where it is not allowed. Generally, a name cannot be `hasOwnProperty` because it is used, internally, on a object and allowing such a name would break lookups on this object.