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"];
}