example(toh-1): fix type error in snippet (#2219)

Fixes #2216.
This commit is contained in:
Patrice Chalin 2016-08-30 11:00:54 -07:00 committed by Kathy Walrath
parent 2ec07472ea
commit f475256124
1 changed files with 1 additions and 1 deletions

View File

@ -32,6 +32,6 @@ template: '''
// #docregion app-component-1
class AppComponent {
String title = 'Tour of Heroes';
Hero hero = 'Windstorm';
var hero = 'Windstorm';
}
// #enddocregion app-component-1