From 206ae7a233371a85b3bd4be9a787039a5af97f24 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Thu, 20 Sep 2018 20:46:15 +0100 Subject: [PATCH] docs(core): remove usage notes from ReflexiveInjector.parent property (#26039) Properties are not allowed usage notes, and in this case the example is so simple it didn't warrant moving it to the overall class documentation. PR Close #26039 --- packages/core/src/di/reflective_injector.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/core/src/di/reflective_injector.ts b/packages/core/src/di/reflective_injector.ts index f11781f060..63cff724e6 100644 --- a/packages/core/src/di/reflective_injector.ts +++ b/packages/core/src/di/reflective_injector.ts @@ -153,15 +153,6 @@ export abstract class ReflectiveInjector implements Injector { * * - * - * @usageNotes - * ### Example - * - * ```typescript - * var parent = ReflectiveInjector.resolveAndCreate([]); - * var child = parent.resolveAndCreateChild([]); - * expect(child.parent).toBe(parent); - * ``` */ abstract get parent(): Injector|null;