Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/docs/ts/latest/cookbook/set-document-title.jade
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ code-example(format='')
:marked
## Use the *Title* service
Fortunately, Angular 2 bridges the gap by providing a `Title` service as part of the *Browser platform*.
The [Title](../api//platform/browser/Title-class.html) service is a simple class that provides an API
The [Title](../api/platform/browser/Title-class.html) service is a simple class that provides an API
for getting and setting the current HTML document title:

* `getTitle() : string` — Gets the title of the current HTML document.
Expand Down
2 changes: 1 addition & 1 deletion public/docs/ts/latest/guide/pipes.jade
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ a(id="no-filter-pipe")
We might sort the list by hero `name` and `planet` origin properties something like this:
code-example(format="." language="html")
<!-- NOT REAL CODE! -->
<div *ngFor="#hero of heroes | orderBy:'name,planet'"></div>
<div *ngFor="let hero of heroes | orderBy:'name,planet'"></div>
:marked
We identify the sort fields by text strings, expecting the pipe to reference a property value by indexing
(e.g., `hero['name']`).
Expand Down