Skip to content

Commit ceedc83

Browse files
committed
docs: use ObservableNotification instead Notification
1 parent d4bb849 commit ceedc83

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/internal/operators/materialize.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import { createOperatorSubscriber } from './OperatorSubscriber';
55

66
/**
77
* Represents all of the notifications from the source Observable as `next`
8-
* emissions marked with their original types within {@link Notification}
8+
* emissions marked with their original types within {@link ObservableNotification}
99
* objects.
1010
*
1111
* <span class="informal">Wraps `next`, `error` and `complete` emissions in
12-
* {@link Notification} objects, emitted as `next` on the output Observable.
12+
* {@link ObservableNotification} objects, emitted as `next` on the output Observable.
1313
* </span>
1414
*
1515
* ![](materialize.png)
@@ -44,11 +44,11 @@ import { createOperatorSubscriber } from './OperatorSubscriber';
4444
* // - Notification { kind: 'E', value: undefined, error: TypeError { message: x.toUpperCase is not a function }, hasValue: false }
4545
* ```
4646
*
47-
* @see {@link Notification}
47+
* @see {@link ObservableNotification}
4848
* @see {@link dematerialize}
4949
*
5050
* @return A function that returns an Observable that emits
51-
* {@link Notification} objects that wrap the original emissions from the
51+
* {@link ObservableNotification} objects that wrap the original emissions from the
5252
* source Observable with metadata.
5353
*/
5454
export function materialize<T>(): OperatorFunction<T, ObservableNotification<T>> {

0 commit comments

Comments
 (0)