From e0663312fb6c50f7255cb43459dfb5aa2d1e9da7 Mon Sep 17 00:00:00 2001 From: Aleksandar Djindjic Date: Fri, 12 Dec 2014 21:26:14 +0100 Subject: [PATCH] docs($rootScope): clean up inheritance example Closes #10441 --- src/ng/rootScope.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index d06abfc2..1ee04ed1 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -105,7 +105,6 @@ function $RootScopeProvider() { var child = parent.$new(); parent.salutation = "Hello"; - child.name = "World"; expect(child.salutation).toEqual('Hello'); child.salutation = "Welcome";