diff --git a/src/internal/operators/share.ts b/src/internal/operators/share.ts index 656995de0f..433649149b 100644 --- a/src/internal/operators/share.ts +++ b/src/internal/operators/share.ts @@ -103,8 +103,8 @@ export function share(options: ShareConfig): MonoTypeOperatorFunction; * * ## Example with notifier factory: Delayed reset * ```ts - * import { interval } from 'rxjs'; - * import { share, take, timer } from 'rxjs/operators'; + * import { interval, timer } from 'rxjs'; + * import { share, take } from 'rxjs/operators'; * * const source = interval(1000).pipe(take(3), share({ resetOnRefCountZero: () => timer(1000) })); *