From 375ce3e31ec1a3f483944687af41909398ad0068 Mon Sep 17 00:00:00 2001 From: John Detlefs Date: Wed, 15 Feb 2017 17:34:12 -0800 Subject: [PATCH] docs(repeat): Remove scheduler as param. (#2368) --- src/operator/repeat.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/operator/repeat.ts b/src/operator/repeat.ts index 1f0abb36ff..82ea20aacf 100644 --- a/src/operator/repeat.ts +++ b/src/operator/repeat.ts @@ -10,7 +10,6 @@ import { TeardownLogic } from '../Subscription'; * * * - * @param {Scheduler} [scheduler] the IScheduler to emit the items on. * @param {number} [count] the number of times the source Observable items are repeated, a count of 0 will yield * an empty Observable. * @return {Observable} an Observable that repeats the stream of items emitted by the source Observable at most