From 8d0946e0220d560d8614a004a971a9df10d9473b Mon Sep 17 00:00:00 2001 From: Jeff Barczewski Date: Sun, 12 Mar 2017 17:28:50 -0700 Subject: [PATCH] docs(Observable): remove trailing whitespace in comment --- src/operator/takeUntil.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operator/takeUntil.ts b/src/operator/takeUntil.ts index b0cf772fb0..4f028c7e66 100644 --- a/src/operator/takeUntil.ts +++ b/src/operator/takeUntil.ts @@ -18,7 +18,7 @@ import { subscribeToResult } from '../util/subscribeToResult'; * * `takeUntil` subscribes and begins mirroring the source Observable. It also * monitors a second Observable, `notifier` that you provide. If the `notifier` - * emits a value, the output Observable stops mirroring the source Observable + * emits a value, the output Observable stops mirroring the source Observable * and completes. * * @example Tick every second until the first click happens