diff --git a/src/internal/operators/sample.ts b/src/internal/operators/sample.ts index 1e8e0cfa983..9008af2f074 100644 --- a/src/internal/operators/sample.ts +++ b/src/internal/operators/sample.ts @@ -1,4 +1,3 @@ -import { Observable } from '../Observable'; import { innerFrom } from '../observable/innerFrom'; import { MonoTypeOperatorFunction, ObservableInput } from '../types'; import { operate } from '../util/lift'; @@ -10,7 +9,7 @@ import { createOperatorSubscriber } from './OperatorSubscriber'; * another Observable, the `notifier`, emits. * * It's like {@link sampleTime}, but samples whenever - * the `notifier` ObservableInput emits something. + * the `notifier` `ObservableInput` emits something. * * ![](sample.png) *