8000 devguide(typo): fixed escaping issue in ts samples · rusongyu/angular.io@2f62173 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2f62173

Browse files
committed
devguide(typo): fixed escaping issue in ts samples
1 parent 22383d4 commit 2f62173

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

public/docs/js/latest/guide/displaying-data.jade

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
//Typescript
113113
class DisplayComponent {
114114
myName: string;
115-
<span class='otl'>names: Array<string>;</span>
115+
<span class='otl'>names: Array&lt;string&gt;;</span>
116116

117117
constructor() {
118118
this.myName = "Alice";
@@ -289,7 +289,7 @@
289289
//ES5
290290
directives: [angular.For, angular.If]
291291
p.
292-
As there are currently 6 items it the list, you'll see the message congratulating you on your many friends.
292+
As there are currently 6 items in the list, you'll see the message congratulating you on your many friends.
293293
Remove three items from the list, reload your browser, and see that the message no longer displays.
294294

295295
code-tabs
@@ -315,7 +315,7 @@
315315
}
316316

317317
class FriendsService {
318-
names: Array<string>;
318+
names: Array&lt;string&gt;;
319319
constructor() {
320320
<span class='otl'>this.names = ["Aarav", "Martín", "Shannon"];</span>
321321
}

0 commit comments

Comments
 (0)
0