From 92e3ca7aa6145b94f77ccecad6e9a4653a25e6b6 Mon Sep 17 00:00:00 2001 From: "kazufumi.nishida" <40748597+kazufumi-nishida-www@users.noreply.github.com> Date: Wed, 7 Aug 2019 06:11:30 +0900 Subject: [PATCH] Fix typo (#4950) --- src/internal/operators/timeInterval.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/operators/timeInterval.ts b/src/internal/operators/timeInterval.ts index d228651363..ec0be9b844 100644 --- a/src/internal/operators/timeInterval.ts +++ b/src/internal/operators/timeInterval.ts @@ -25,7 +25,7 @@ import { map } from './map'; * ```ts * const seconds = interval(1000); * - * seconds.pipe(timeinterval()) + * seconds.pipe(timeInterval()) * .subscribe( * value => console.log(value), * err => console.log(err),