Skip to content

Commit

Permalink
chore: remove outdated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Feb 21, 2022
1 parent 0d52d6a commit 6c99302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/Subscriber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class Subscriber<T> extends Subscription implements Observer<T> {
/** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */
protected isStopped: boolean = false;
/** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */
protected destination: Subscriber<T> | Observer<T>; // this `any` is the escape hatch to erase extra type param (e.g. R)
protected destination: Subscriber<T> | Observer<T>;

/**
* Creates an instance of an RxJS Subscriber. This is the workhorse of the library.
Expand Down

0 comments on commit 6c99302

Please sign in to comment.