This repository was archived by the owner on Dec 4, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ code-example(format='')
34
34
:marked
35
35
## Use the *Title* service
36
36
Fortunately, Angular 2 bridges the gap by providing a `Title` service as part of the *Browser platform*.
37
- The [Title](../api// platform/browser/Title-class.html) service is a simple class that provides an API
37
+ The [Title](../api/platform/browser/Title-class.html) service is a simple class that provides an API
38
38
for getting and setting the current HTML document title:
39
39
40
40
* `getTitle() : string` — Gets the title of the current HTML document.
Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ a(id="no-filter-pipe")
439
439
We might sort the list by hero `name` and `planet` origin properties something like this:
440
440
code-example( format ="." language ="html" )
441
441
< !-- NOT REAL CODE! -->
442
- < div *ngFor="# hero of heroes | orderBy:'name,planet'"> < /div>
442
+ < div *ngFor="let hero of heroes | orderBy:'name,planet'"> < /div>
443
443
:marked
444
444
We identify the sort fields by text strings, expecting the pipe to reference a property value by indexing
445
445
(e.g., `hero['name']`).
You can’t perform that action at this time.
0 commit comments