From acc8e15221bffbdb18e525f0848ec02cc0c8c211 Mon Sep 17 00:00:00 2001 From: TheNightbear Date: Mon, 20 Jun 2016 17:18:19 +0200 Subject: [PATCH] Typo There was a little typo in the code example. The closing bracket should be a '}' not a ')' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6610aee..3c00340f 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ bootstrap(AppComponent, [ provide: TranslateLoader, useFactory: (http: Http) => new TranslateStaticLoader(http, 'assets/i18n', '.json'), deps: [Http] - ), + }, // use TranslateService here, and not TRANSLATE_PROVIDERS (which will define a default TranslateStaticLoader) TranslateService ]);