From 3f99031ea4294c7914fbb1dd5d9905b2766dba51 Mon Sep 17 00:00:00 2001 From: kentwalters Date: Mon, 7 Nov 2016 20:57:22 -0600 Subject: [PATCH] docs(guide/Controllers): removed the word 'hides' Hiding a property and overriding a property seem to me fundamentally different things. I thought while reading that the '(hides)' did not offer any more clarification than just saying overrides, and caused me to pause unnecessarily to understand it. --- docs/content/guide/controller.ngdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/guide/controller.ngdoc b/docs/content/guide/controller.ngdoc index f4df3fb9fa64..efbcad8df47a 100644 --- a/docs/content/guide/controller.ngdoc +++ b/docs/content/guide/controller.ngdoc @@ -253,9 +253,9 @@ scopes being created for our view: - The root scope - The `MainController` scope, which contains `timeOfDay` and `name` properties -- The `ChildController` scope, which inherits the `timeOfDay` property but overrides (hides) the `name` -property from the previous -- The `GrandChildController` scope, which overrides (hides) both the `timeOfDay` property defined in `MainController` +- The `ChildController` scope, which inherits the `timeOfDay` property but overrides the `name` +property from the previous scope +- The `GrandChildController` scope, which overrides both the `timeOfDay` property defined in `MainController` and the `name` property defined in `ChildController` Inheritance works with methods in the same way as it does with properties. So in our previous