From e9a1d04b6a520be6a3a255a9b0f5b9bb9a2dcf3d Mon Sep 17 00:00:00 2001 From: Dmitriy Shekhovtsov Date: Tue, 31 May 2016 17:02:47 +0300 Subject: [PATCH] fix(readme): alert component name fixed fixes #552 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e00ca64499..243fd17a7a 100644 --- a/README.md +++ b/README.md @@ -113,11 +113,11 @@ And update your `app.component.ts` to have following content: ```ts import {Component} from 'angular2/core'; -import {Alert} from 'ng2-bootstrap/ng2-bootstrap'; +import {AlertComponent} from 'ng2-bootstrap/ng2-bootstrap'; @Component({ selector: 'my-app', - directives: [Alert], + directives: [AlertComponent], template: `ng2-bootstrap hello world!` }) export class AppComponent {