From 2f62173bbfd55a377a13d3ea0b3801976f3677b6 Mon Sep 17 00:00:00 2001 From: Naomi Black Date: Fri, 29 May 2015 15:17:14 -0700 Subject: [PATCH] devguide(typo): fixed escaping issue in ts samples --- public/docs/js/latest/guide/displaying-data.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/js/latest/guide/displaying-data.jade b/public/docs/js/latest/guide/displaying-data.jade index b8d8a933bd..4f16adbeca 100644 --- a/public/docs/js/latest/guide/displaying-data.jade +++ b/public/docs/js/latest/guide/displaying-data.jade @@ -112,7 +112,7 @@ //Typescript class DisplayComponent { myName: string; - names: Array; + names: Array<string>; constructor() { this.myName = "Alice"; @@ -289,7 +289,7 @@ //ES5 directives: [angular.For, angular.If] p. - As there are currently 6 items it the list, you'll see the message congratulating you on your many friends. + As there are currently 6 items in the list, you'll see the message congratulating you on your many friends. Remove three items from the list, reload your browser, and see that the message no longer displays. code-tabs @@ -315,7 +315,7 @@ } class FriendsService { - names: Array; + names: Array<string>; constructor() { this.names = ["Aarav", "Martín", "Shannon"]; }