From 16023e7714e60741912a21532e0a0294ae51a7b3 Mon Sep 17 00:00:00 2001 From: ash Date: Fri, 18 Nov 2016 10:30:20 +0530 Subject: [PATCH] docs: fix typo --- public/docs/ts/latest/guide/dependency-injection.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/dependency-injection.jade b/public/docs/ts/latest/guide/dependency-injection.jade index 2bdd238f8d..50829c4581 100644 --- a/public/docs/ts/latest/guide/dependency-injection.jade +++ b/public/docs/ts/latest/guide/dependency-injection.jade @@ -257,7 +257,7 @@ block ctor-syntax We can either register a provider within an [NgModule](ngmodule.html) or in application components ### Registering providers in an NgModule - Here's our AppModule where we register a `Logger`, an `UserService`, and an `APP_CONFIG` provider. + Here's our AppModule where we register a `Logger`, a `UserService`, and an `APP_CONFIG` provider. - var stylePattern = { otl: /(providers)/ }; +makeExample('dependency-injection/ts/app/app.module.ts', 'ngmodule','app/app.module.ts', stylePattern)(format='.')