Skip to content

Commit

Permalink
fix(readme): alert component name fixed
Browse files Browse the repository at this point in the history
fixes #552
  • Loading branch information
valorkin committed May 31, 2016
1 parent fc548f9 commit e9a1d04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: `<alert type="info">ng2-bootstrap hello world!</alert>`
})
export class AppComponent {
Expand Down

0 comments on commit e9a1d04

Please sign in to comment.