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

docs(pipes): Fixed typo #1053

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions public/docs/ts/latest/guide/pipes.jade
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ figure.image-display
Angular executes an *impure pipe* during *every* component change detection cycle.
An impure pipe will be called a lot, as often as every keystroke or mouse-move.

If follows that we must implement an impure pipe with great care.
It is therefore understood, that we must implement an impure pipe with great care.
An expensive, long-running pipe could destroy the user experience.

<a id="impure-flying-heroes"></a>
Expand Down Expand Up @@ -471,4 +471,4 @@ code-example(format="." language="html")

If these performance and minification considerations do not apply to you, you can always create your own such pipes
(along the lines of the [FlyingHeroesPipe](#impure-flying-heroes)) or find them in the community.