doc(tutorial): Fixed typo.

closes #926
This commit is contained in:
Deborah Kurata 2016-03-07 20:14:38 -08:00 committed by Ward Bell
parent d6dc97722b
commit 818faff117
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ include ../_util-fns
Well use built-in directives to show/hide elements and display lists of hero data.
Well create a component to display hero details and another to show an array of heroes.
We'll use one-way data binding for read-only data. We'll add editable fields to update a model
with two-way data binding. We'll bind component method to user events like key strokes and clicks.
with two-way data binding. We'll bind component methods to user events like key strokes and clicks.
Well learn to select a hero from a master list and edit that hero in the details view. We'll
format data with pipes. We'll create a shared service to assemble our heroes. And we'll use routing to navigate among different views and their components.