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

Commit 7dac7f8

Browse files
chalinkwalrath
authored andcommitted
docs(Dart): misc minor updates of a few cached .jade files
1 parent 350dadb commit 7dac7f8

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

public/docs/ts/_cache/guide/learning-angular.jade

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ figure
99
Those new to Angular may wish to follow this popular learning path.
1010
<br class="l-clear-left">
1111

12-
:marked
1312
1. [Setup](setup.html "Setup locally withe Quickstart seed") for local Angular development, if you haven't already done so.
1413

1514
1. Take the [*Tour of Heroes* tutorial](../tutorial "Tour of Heroes").
@@ -41,4 +40,4 @@ figure
4140
### Next Step
4241

4342
Try the [tutorial](../tutorial "Tour of Heroes") if you're ready to start coding or
44-
visit the [Architecture](architecture.html "Basic Concepts") guide if you prefer to learn the basic concepts first.
43+
visit the [Architecture](architecture.html "Basic Concepts") page if you prefer to learn the basic concepts first.

public/docs/ts/_cache/guide/template-syntax.jade

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,11 @@ block includes
4242
.l-main-section
4343
:marked
4444
## HTML
45-
HTML is the language of the Angular template. Our [QuickStart](../quickstart.html) application has a template that is pure HTML:
45+
HTML is the language of the Angular template.
46+
The [QuickStart](../quickstart.html) application has a template that is pure HTML:
4647

4748
code-example(language="html" escape="html").
48-
<h1>My First Angular App</h1>
49+
<h1>Hello Angular</h1>
4950

5051
:marked
5152
Almost all HTML syntax is valid template syntax. The `<script>` element is a notable exception; it is forbidden, eliminating the risk of script injection attacks. (In practice, `<script>` is simply ignored.)
@@ -401,7 +402,7 @@ table
401402
(element | component | directive) event, or (rarely) an attribute name.
402403
The following table summarizes:
403404

404-
// If you update this table, UPDATE it in Dart & JS, too.
405+
//- If you update this table, UPDATE it in Dart & JS, too.
405406
<div width="90%">
406407
table
407408
tr
@@ -813,7 +814,7 @@ block style-property-name-dart-diff
813814
including queries and saves to a remote server.
814815
These changes percolate through the system and are ultimately displayed in this and other views.
815816

816-
//
817+
//-
817818
:marked
818819
### Event bubbling and propagation [TODO: reinstate this section when it becomes true]
819820
Angular invokes the event-handling statement if the event is raised by the current element or one of its child elements.

public/docs/ts/_cache/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)