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

Commit 2eaec29

Browse files
committed
fix quickstart jade error
1 parent 01d0a8a commit 2eaec29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/docs/ts/latest/quickstart.jade

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ block includes
55
Angular applications are made up of _components_.
66
A _component_ is the combination of an HTML template and a component class that controls a portion of the screen. Here is an example of a component that displays a simple string:
77

8-
+makeExample('src/app/app.component.ts',,'app/app.component.ts')(format='.')
8+
+makeExample('src/app/app.component.ts')(format='.')
99

1010
block qs-src-online-and-local
1111
.l-sub-section
@@ -27,7 +27,7 @@ block qs-src-online-and-local
2727
which is an Angular [interpolation binding](guide/displaying-data.html) expression.
2828
At runtime, Angular replaces `{{name}}` with the value of the component's `name` property.
2929
Interpolation binding is one of many Angular features you'll discover in this documentation.
30-
30+
3131
+ifDocsFor('ts')
3232
:marked
3333
In the example, change the component class's `name` property from `'Angular'` to `'World'` and see what happens.

0 commit comments

Comments
 (0)