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

Commit 66764fe

Browse files
Foxandxsswardbell
authored andcommitted
docs: fix a few typos
closes #1239
1 parent bbd7d79 commit 66764fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

public/docs/ts/latest/cookbook/set-document-title.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ code-example(format='')
3434
:marked
3535
## Use the *Title* service
3636
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
3838
for getting and setting the current HTML document title:
3939

4040
* `getTitle() : string` — Gets the title of the current HTML document.

public/docs/ts/latest/guide/pipes.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ a(id="no-filter-pipe")
439439
We might sort the list by hero `name` and `planet` origin properties something like this:
440440
code-example(format="." language="html")
441441
<!-- NOT REAL CODE! -->
442-
<div *ngFor="#hero of heroes | orderBy:'name,planet'"></div>
442+
<div *ngFor="let hero of heroes | orderBy:'name,planet'"></div>
443443
:marked
444444
We identify the sort fields by text strings, expecting the pipe to reference a property value by indexing
445445
(e.g., `hero['name']`).

0 commit comments

Comments
 (0)