docs($rootScope): clean up inheritance example

Closes #10441
This commit is contained in:
Aleksandar Djindjic
2014-12-12 21:26:14 +01:00
committed by Pawel Kozlowski
parent 9ae0c01c2b
commit e0663312fb

View File

@@ -105,7 +105,6 @@ function $RootScopeProvider() {
var child = parent.$new();
parent.salutation = "Hello";
child.name = "World";
expect(child.salutation).toEqual('Hello');
child.salutation = "Welcome";