docs(bugfix):fix class name on todo list sample

fixes #880
This commit is contained in:
UnJavaScripter 2016-02-23 12:36:45 -05:00
parent b32b10dfe5
commit 4ad2d26b2e
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import {Todo} from './todo';
}`
],
template: `
<ul class="unstyled">
<ul class="list-unstyled">
<li *ngFor="#todo of todos">
<input type="checkbox" [(ngModel)]="todo.done">
<span class="done-{{todo.done}}">{{todo.text}}</span>