From 818faff11776508ee85d3d11280a0287a996ffad Mon Sep 17 00:00:00 2001 From: Deborah Kurata Date: Mon, 7 Mar 2016 20:14:38 -0800 Subject: [PATCH] doc(tutorial): Fixed typo. closes #926 --- public/docs/ts/latest/tutorial/index.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/tutorial/index.jade b/public/docs/ts/latest/tutorial/index.jade index c9310a8e35..72f783bd34 100644 --- a/public/docs/ts/latest/tutorial/index.jade +++ b/public/docs/ts/latest/tutorial/index.jade @@ -15,7 +15,7 @@ include ../_util-fns We’ll use built-in directives to show/hide elements and display lists of hero data. We’ll 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. We’ll 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.