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

Commit d89a5ab

Browse files
kapunahelewongwardbell
authored andcommitted
docs(quickstart): copy edits (#2889)
1 parent 9ba0f34 commit d89a5ab

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

public/docs/ts/latest/quickstart.jade

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ block includes
33
- var _on_Plunkr = 'on Plunkr';
44

55
:marked
6-
Angular applications are made of _components_.
6+
Angular applications are made up of _components_.
77
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:
88

99
+makeExample('app/app.component.ts')(format='.')
@@ -15,17 +15,17 @@ block includes
1515
Every component begins with an `@Component` [!{_decorator}](glossary.html#!{_decorator} '"!{_decorator}" explained')
1616
<span if-docs="ts">function</span> that
1717
<span if-docs="ts">takes a _metadata_ object. The metadata object</span> describes how the HTML template and component class work together.
18-
18+
1919
The `selector` property tells Angular to display the component inside a custom `<my-app>` tag in the `index.html`.
2020
+makeExample('index.html','my-app','index.html (inside <body>)')(format='.')
2121
:marked
2222
The `template` property defines a message inside an `<h1>` header.
23-
The message starts with "Hello" and ends with `{{name}}`
23+
The message starts with "Hello" and ends with `{{name}}`,
2424
which is an Angular [interpolation binding](guide/displaying-data.html) expression.
25-
At runtime, Angular replaces `{{name}}` with the value of the component's `name` property.
26-
25+
At runtime, Angular replaces `{{name}}` with the value of the component's `name` property.
26+
2727
In the example, change the component class's `name` property from `'Angular'` to `'World'` and see what happens.
28-
28+
2929
Interpolation binding is one of many Angular features you'll discover in this documentation.
3030

3131
+ifDocsFor('ts')

0 commit comments

Comments
 (0)