Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 8db6131

Browse files
committed
escape some >s
1 parent 23fcb95 commit 8db6131

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
code-example(language="dart").
161161
class DisplayComponent {
162162
String myName = 'Alice';
163-
List<String> friendNames = const [
163+
List<String> friendNames = const [
164164
'Aarav',
165165
'Martín',
166166
'Shannon',
@@ -238,7 +238,7 @@
238238

239239
@Injectable()
240240
class FriendsService {
241-
List<String> names = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai'];
241+
List<String> names = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai'];
242242
}
243243

244244
p.

public/docs/dart/latest/guide/setup.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
and call <code>main.dart</code>.
7979

8080
code-example(language="html").
81-
&lt;!-- web/index.html -->
81+
&lt;!-- web/index.html --&gt;
8282
&lt;!DOCTYPE html&gt;
8383
&lt;html&gt;
8484
&lt;head&gt;

public/docs/dart/latest/guide/user-input.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
&lt;/ul&gt;
144144

145145
&lt;input #todotext (keyup)="doneTyping(\$event)"&gt;
146-
&lt;button (click)="addTodo(todotext.value)"&gt;Add Todo&lt;/button>
146+
&lt;button (click)="addTodo(todotext.value)"&gt;Add Todo&lt;/button&gt;
147147
''', directives: const [NgFor])
148148
class TodoList {
149149
List&lt;String&gt; todos = [

0 commit comments

Comments
 (0)