From 89802316b953697c3f3542c689beee6760e9ad4a Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Sun, 18 Sep 2016 16:04:04 -0700 Subject: [PATCH] docs(injector): API docs - remove lone code-block backticks (#11653) The triple backticks in the markdown of the API entry are unbalanced. --- modules/@angular/core/src/di/injector.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/@angular/core/src/di/injector.ts b/modules/@angular/core/src/di/injector.ts index 3c9a750092..3af3b5fa97 100644 --- a/modules/@angular/core/src/di/injector.ts +++ b/modules/@angular/core/src/di/injector.ts @@ -51,7 +51,6 @@ export abstract class Injector { * - Throws {@link NoProviderError} if no `notFoundValue` that is not equal to * Injector.THROW_IF_NOT_FOUND is given * - Returns the `notFoundValue` otherwise - * ``` */ get(token: any, notFoundValue?: any): any { return unimplemented(); } }