From c3c8c13748606c681b784ebfb639b432512ccc3b Mon Sep 17 00:00:00 2001 From: Emmanuel DEMEY Date: Tue, 5 Jan 2016 21:36:29 +0100 Subject: [PATCH] Change Obsevable into Observable closes #653 --- public/docs/ts/latest/guide/pipes.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/pipes.jade b/public/docs/ts/latest/guide/pipes.jade index 08f064b226..b5bf013c96 100644 --- a/public/docs/ts/latest/guide/pipes.jade +++ b/public/docs/ts/latest/guide/pipes.jade @@ -207,7 +207,7 @@ figure.image-display The Async pipe saves boilerplate in the component code. The component doesn't have to subscribe to the async data source, it doesn't extract the resolved values and expose them for binding, - and (in the case of Obsevable stream sources like `EventEmitter`) + and (in the case of Observable stream sources like `EventEmitter`) the component doesn't have to unsubscribe when it is destroyed (a potent source of memory leaks).