diff --git a/packages/rxjs/src/internal/operators/sample.ts b/packages/rxjs/src/internal/operators/sample.ts index 1ab51251fa..3954e44bbd 100644 --- a/packages/rxjs/src/internal/operators/sample.ts +++ b/packages/rxjs/src/internal/operators/sample.ts @@ -35,6 +35,7 @@ import { noop } from '../util/noop.js'; * @see {@link debounce} * @see {@link sampleTime} * @see {@link throttle} + * @see {@link withLatestFrom} * * @param notifier The `ObservableInput` to use for sampling the * source Observable. diff --git a/packages/rxjs/src/internal/operators/withLatestFrom.ts b/packages/rxjs/src/internal/operators/withLatestFrom.ts index b50274d79a..db1ebb4c79 100644 --- a/packages/rxjs/src/internal/operators/withLatestFrom.ts +++ b/packages/rxjs/src/internal/operators/withLatestFrom.ts @@ -41,6 +41,7 @@ export function withLatestFrom( * ``` * * @see {@link combineLatest} + * @see {@link sample} * * @param inputs An input Observable to combine with the source Observable. More * than one input Observables may be given as argument. If the last parameter is