From fc8f1f2431d76ba12108b11c3f5cacd83c649671 Mon Sep 17 00:00:00 2001 From: demensky Date: Fri, 10 Feb 2023 21:12:39 +0200 Subject: [PATCH] docs: use `ObservableNotification` instead `Notification` --- src/internal/operators/materialize.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/internal/operators/materialize.ts b/src/internal/operators/materialize.ts index f642415d52..53f2a3c57f 100644 --- a/src/internal/operators/materialize.ts +++ b/src/internal/operators/materialize.ts @@ -5,11 +5,11 @@ import { createOperatorSubscriber } from './OperatorSubscriber'; /** * Represents all of the notifications from the source Observable as `next` - * emissions marked with their original types within {@link Notification} + * emissions marked with their original types within {@link ObservableNotification} * objects. * * Wraps `next`, `error` and `complete` emissions in - * {@link Notification} objects, emitted as `next` on the output Observable. + * {@link ObservableNotification} objects, emitted as `next` on the output Observable. * * * ![](materialize.png) @@ -44,11 +44,11 @@ import { createOperatorSubscriber } from './OperatorSubscriber'; * // - Notification { kind: 'E', value: undefined, error: TypeError { message: x.toUpperCase is not a function }, hasValue: false } * ``` * - * @see {@link Notification} + * @see {@link ObservableNotification} * @see {@link dematerialize} * * @return A function that returns an Observable that emits - * {@link Notification} objects that wrap the original emissions from the + * {@link ObservableNotification} objects that wrap the original emissions from the * source Observable with metadata. */ export function materialize(): OperatorFunction> {