From 4a0925192162ee3b2bb5a279b16a8625e75cd38d Mon Sep 17 00:00:00 2001 From: Tim Blair Date: Tue, 22 Nov 2016 22:31:27 -0500 Subject: [PATCH] doc(common): fix a typo in async pipe --- modules/@angular/common/src/pipes/async_pipe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/common/src/pipes/async_pipe.ts b/modules/@angular/common/src/pipes/async_pipe.ts index 832e146863..e319f20fac 100644 --- a/modules/@angular/common/src/pipes/async_pipe.ts +++ b/modules/@angular/common/src/pipes/async_pipe.ts @@ -59,7 +59,7 @@ const _observableStrategy = new ObservableStrategy(); * {@example common/pipes/ts/async_pipe.ts region='AsyncPipePromise'} * * It's also possible to use `async` with Observables. The example below binds the `time` Observable - * to the view. The Observable continuesly updates the view with the current time. + * to the view. The Observable continuously updates the view with the current time. * * {@example common/pipes/ts/async_pipe.ts region='AsyncPipeObservable'} *