Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix all broken links and old refs #310

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ site, these excellent resources will help jump start your learning experience!

#### Conferences

- [RxJS Live](https://www.rxjs.live/) - RxJS specific conference
- [RxJS Live](https://www.youtube.com/@rxjslive2237) - RxJS specific conference

#### Reading

Expand All @@ -138,7 +138,7 @@ site, these excellent resources will help jump start your learning experience!
- [Ultimate RxJS](https://ultimatecourses.com/courses/rxjs?ref=4) 💵 - Brian
Troncone

- [Asynchronous Programming: The End of The Loop](https://egghead.io/courses/mastering-asynchronous-programming-the-end-of-the-loop) -
- [Asynchronous Programming: The End of The Loop](https://egghead.io/courses/asynchronous-programming-the-end-of-the-loop) -
Jafar Husain

- [What is RxJS?](https://egghead.io/lessons/rxjs-what-is-rxjs) - Ben Lesh
Expand Down
3 changes: 2 additions & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
- [interval](operators/creation/interval.md)
- [of](operators/creation/of.md)
- [range](operators/creation/range.md)
- [throw](operators/creation/throw.md)
- [throwError](operators/creation/throwError.md)
- [timer](operators/creation/timer.md)
- [Error Handling](operators/error_handling/README.md)
- [catch / catchError](operators/error_handling/catch.md)
Expand Down Expand Up @@ -105,6 +105,7 @@
- [finalize / finally](operators/utility/finalize.md)
- [let](operators/utility/let.md)
- [repeat](operators/utility/repeat.md)
- [repeatWhen](operators/utility/repeatwhen.md)
- [timeInterval](operators/utility/timeinterval.md)
- [timeout](operators/utility/timeout.md)
- [timeoutWith](operators/utility/timeoutwith.md)
Expand Down
2 changes: 1 addition & 1 deletion concepts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ Short explanations of common RxJS scenarios and use-cases.

- [RxJS Primer](rxjs-primer.md)
- [Get started transforming streams with map, pluck, and mapTo](get-started-transforming.md)
- [Time Based Operator Comparison](time-based-operator-comparison.md)
- [Time Based Operator Comparison](time-based-operators-comparison.md)
- [RxJS v5 -> v6 Upgrade](rxjs5-6.md)
2 changes: 1 addition & 1 deletion concepts/get-started-transforming.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ than each value contained within an array.

For instance, let's start with our initial example, but instead of transforming
an array of numbers let's transform an observable of numbers. To do this, we
will use the [`from`](../operators/creation/from.mdl) creation operator to first
will use the [`from`](../operators/creation/from.md) creation operator to first
convert our numbers array into an observable:

```js
Expand Down
2 changes: 1 addition & 1 deletion concepts/rxjs-primer.md
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ behavior.

For instance, suppose we wanted to make a request which saved user activity when
they answered a quiz question. Our initial implementation may use the
[`mergeMap`](../opearators/transformation/mergemap.md) operator, which fires off
[`mergeMap`](../operators/transformation/mergemap.md) operator, which fires off
a save request on each event:

```js
Expand Down
2 changes: 1 addition & 1 deletion concepts/rxjs5-6.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ handy:
TsLint rules for migration to RxJS 6. Auto-update project for new import paths
and transition to pipeable operators.

### [RxJS v5.x to v6 Update Guide](https://github.com/ReactiveX/rxjs/blob/master/docs_app/content/guide/v6/migration.md)
### [RxJS v5.x to v6 Update Guide](https://github.com/ReactiveX/rxjs/blob/6.6.7/docs_app/content/guide/v6/migration.md)

Comprehensive guide for updating your project from RxJS v5 to 6

Expand Down
2 changes: 1 addition & 1 deletion operators/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ _[Prefer a complete list in alphabetical order?](complete.md)_
- [interval](creation/interval.md)
- [of](creation/of.md) ⭐
- [range](creation/range.md)
- [throw](creation/throw.md)
- [throwError](creation/throwError.md)
- [timer](creation/timer.md)
- [Error Handling](error_handling/README.md)
- [catch / catchError](error_handling/catch.md) ⭐
Expand Down
2 changes: 1 addition & 1 deletion operators/combination/combineall.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ example$
---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/combineAll.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/combineAll.ts)
> [https://github.com/ReactiveX/rxjs/blob/7.8.1/src/internal/operators/combineAll.ts](https://github.com/ReactiveX/rxjs/blob/7.8.1/src/internal/operators/combineAll.ts)
10 changes: 5 additions & 5 deletions operators/combination/combinelatest.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rely on each other for some calculation or determination. Basic examples of this
can be seen in [example three](#example-3-combining-events-from-2-buttons),
where events from multiple buttons are being combined to produce a count of each
and an overall total, or a
[calculation of BMI](http://reactivex.io/rxjs/class/es6/Observable.js~Observable.html#instance-method-combineLatest)
[calculation of BMI](https://rxjs-dev.firebaseapp.com/api/index/function/combineLatest#examples)
from the RxJS documentation.

Be aware that **`combineLatest` will not emit an initial value until each
Expand Down Expand Up @@ -157,15 +157,15 @@ combineLatest(addOneClick$('red'), addOneClick$('black')).subscribe(

- [combineLatest](https://rxjs.dev/api/index/function/combineLatest) 📰 -
Official docs
- [combineLatest](https://indepth.dev/reference/rxjs/operators/combine-latest) - In Depth Dev Reference
- [combineLatest](https://web.archive.org/web/20230529225628/https://indepth.dev/reference/rxjs/operators/combine-latest) - In Depth Dev Reference
- [Combining streams with combineLatest](https://egghead.io/lessons/rxjs-combining-streams-with-combinelatest?course=step-by-step-async-javascript-with-rxjs)
🎥 💵 - John Linquist
- [Combination operator: combineLatest](https://egghead.io/lessons/rxjs-combination-operator-combinelatest?course=rxjs-beyond-the-basics-operators-in-depth)
🎥 💵 - André Staltz
- [Build your own combineLatest operator](https://blog.strongbrew.io/build-the-operators-from-rxjs-from-scratch/?lectureId=combineLatest#app)
🎥 - Kwinten Pisman
- [Build your own combineLatest operator](https://github.com/KwintenP/rxjs-operators-from-scratch/blob/master/src/observable/combineLatest.ts)
📁 - Kwinten Pisman

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/combineLatest.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/combineLatest.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/combineLatest.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/combineLatest.ts)
4 changes: 2 additions & 2 deletions operators/combination/concat.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ concat(interval(1000), of('This', 'Never', 'Runs'))
### Additional Resources

- [concat](https://rxjs.dev/api/index/function/concat) 📰 - Official docs
- [concat](https://indepth.dev/reference/rxjs/operators/concat) - In Depth Dev Reference
- [concat](https://web.archive.org/web/20230529215358/https://indepth.dev/reference/rxjs/operators/concat) - In Depth Dev Reference
- [Combination operator: concat, startWith](https://egghead.io/lessons/rxjs-combination-operators-concat-startwith?course=rxjs-beyond-the-basics-operators-in-depth)
🎥 💵 - André Staltz

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/concat.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/concat.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/concat.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/concat.ts)
4 changes: 2 additions & 2 deletions operators/combination/concatall.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ const subscribe = example.subscribe(val => console.log(val));
### Additional Resources

- [concatAll](https://rxjs.dev/api/operators/concatAll) 📰 - Official docs
- [concatAll](https://indepth.dev/reference/rxjs/operators/concat-all) - In Depth Dev Reference
- [concatAll](https://web.archive.org/web/20230127105516/https://indepth.dev/reference/rxjs/operators/concat-all) - In Depth Dev Reference
- [Flatten a higher order observable with concatAll in RxJS](https://egghead.io/lessons/rxjs-flatten-a-higher-order-observable-with-concatall-in-rxjs?course=use-higher-order-observables-in-rxjs-effectively)
🎥 💵 - André Staltz

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/concatAll.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/concatAll.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/concatAll.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/concatAll.ts)
2 changes: 1 addition & 1 deletion operators/combination/endwith.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ source$
---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/endWith.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/endWith.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/endWith.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/endWith.ts)
8 changes: 4 additions & 4 deletions operators/combination/forkjoin.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ similar to how you might use
Be aware that if any of the inner observables supplied to `forkJoin` error you
will lose the value of any other observables that would or have already
completed if you do not [`catch`](../error_handling/catch.md) the
[error correctly on the inner observable](#example-4-getting-successful-results-when-one-innner-observable-errors).
[error correctly on the inner observable](#example-5-getting-successful-results-when-one-inner-observable-errors).
If you are only concerned with all inner observables completing successfully you
can [catch the error on the outside](#example-3-handling-errors-on-outside).
can [catch the error on the outside](#example-4-handling-errors-on-outside).

It's also worth noting that if you have an observable that emits more than one
item, and you are concerned with the previous emissions `forkJoin` is not the
Expand Down Expand Up @@ -254,9 +254,9 @@ export class App {
### Additional Resources

- [forkJoin](https://rxjs.dev/api/index/function/forkJoin) 📰 - Official docs
- [forkJoin](https://indepth.dev/reference/rxjs/operators/fork-join) - In Depth Dev Reference
- [forkJoin](https://web.archive.org/web/20220810205148/https://indepth.dev/reference/rxjs/operators/fork-join) - In Depth Dev Reference

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/observable/forkJoin.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/observable/forkJoin.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/forkJoin.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/forkJoin.ts)
8 changes: 4 additions & 4 deletions operators/combination/merge.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,17 @@ const subscribe = example.subscribe(val => console.log(val));
### Additional Resources

- [merge](https://rxjs.dev/api/index/function/merge) 📰 - Official docs
- [merge](https://indepth.dev/reference/rxjs/operators/merge) - In Depth Dev Reference
- [merge](https://web.archive.org/web/20230608174759/https://indepth.dev/reference/rxjs/operators/merge) - In Depth Dev Reference
- [Handling multiple streams with merge](https://egghead.io/lessons/rxjs-handling-multiple-streams-with-merge?course=step-by-step-async-javascript-with-rxjs)
🎥 💵 - John Linquist
- [Sharing network requests with merge](https://egghead.io/lessons/rxjs-reactive-programming-sharing-network-requests-with-rxjs-merge?course=introduction-to-reactive-programming)
🎥 💵 - André Staltz
- [Combination operator: merge](https://egghead.io/lessons/rxjs-combination-operator-merge?course=rxjs-beyond-the-basics-operators-in-depth)
🎥 💵 - André Staltz
- [Build your own merge operator](https://blog.strongbrew.io/build-the-operators-from-rxjs-from-scratch/?lectureId=merge#app)
🎥 - Kwinten Pisman
- [Build your own merge operator](https://github.com/KwintenP/rxjs-operators-from-scratch/blob/master/src/observable/merge.ts)
📁 - Kwinten Pisman

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/merge.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/merge.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/merge.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/merge.ts)
4 changes: 2 additions & 2 deletions operators/combination/mergeall.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ const example = source
### Additional Resources

- [mergeAll](https://rxjs.dev/api/operators/mergeAll) 📰 - Official docs
- [mergeAll](https://indepth.dev/reference/rxjs/operators/merge-all) - In Depth Dev Reference
- [mergeAll](https://web.archive.org/web/20230127122030/https://indepth.dev/reference/rxjs/operators/merge-all) - In Depth Dev Reference
- [Flatten a higher order observable with mergeAll in RxJS](https://egghead.io/lessons/rxjs-flatten-a-higher-order-observable-with-mergeall-in-rxjs?course=use-higher-order-observables-in-rxjs-effectively)
🎥 💵 - André Staltz

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/mergeAll.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/mergeAll.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/mergeAll.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/mergeAll.ts)
2 changes: 1 addition & 1 deletion operators/combination/pairwise.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ interval(1000)
---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/pairwise.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/pairwise.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/pairwise.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/pairwise.ts)
6 changes: 3 additions & 3 deletions operators/combination/race.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ race(first, second, third).subscribe(val => console.log(val));

### Additional Resources

- [race](http://reactivex.io/rxjs/class/es6/Observable.js~Observable.html#instance-method-race) 📰 - Official docs
- [race](https://indepth.dev/reference/rxjs/operators/race) - In Depth Dev Reference
- [race](https://rxjs-dev.firebaseapp.com/api/index/function/race) 📰 - Official docs
- [race](https://web.archive.org/web/20220930042726/https://indepth.dev/reference/rxjs/operators/race) - In Depth Dev Reference

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/race.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/race.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/race.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/race.ts)
4 changes: 2 additions & 2 deletions operators/combination/startwith.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
---

💡 A
[BehaviorSubject](https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/subjects/behaviorsubject.md)
[BehaviorSubject](https://rxjs.dev/guide/subject#behaviorsubject)
can also start with an initial value!

---
Expand Down Expand Up @@ -122,4 +122,4 @@ const subscribe = example.subscribe(val => console.log(val));
---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/startWith.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/startWith.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/startWith.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/startWith.ts)
4 changes: 2 additions & 2 deletions operators/combination/withlatestfrom.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ const subscribe = example.subscribe(val => console.log(val));

- [withLatestFrom](https://rxjs.dev/api/operators/withLatestFrom) 📰 - Official
docs
- [withLatestFrom](https://indepth.dev/reference/rxjs/operators/with-latest-from) - In Depth Dev Reference
- [withLatestFrom](https://web.archive.org/web/20230529223221/https://indepth.dev/reference/rxjs/operators/with-latest-from) - In Depth Dev Reference
- [Combination operator: withLatestFrom](https://egghead.io/lessons/rxjs-combination-operator-withlatestfrom?course=rxjs-beyond-the-basics-operators-in-depth)
🎥 💵 - André Staltz

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/withLatestFrom.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/withLatestFrom.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/withLatestFrom.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/withLatestFrom.ts)
6 changes: 3 additions & 3 deletions operators/combination/zip.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ mouseClickDuration.subscribe(console.log);

### Additional Resources

- [zip](http://reactivex.io/rxjs/class/es6/Observable.js~Observable.html#static-method-zip)
- [zip](https://rxjs-dev.firebaseapp.com/api/index/function/zip)
📰 - Official docs
- [zip](https://indepth.dev/reference/rxjs/operators/zip) - In Depth Dev Reference
- [zip](https://web.archive.org/web/20230529222132/https://indepth.dev/reference/rxjs/operators/zip) - In Depth Dev Reference
- [Combination operator: zip](https://egghead.io/lessons/rxjs-combination-operator-zip?course=rxjs-beyond-the-basics-operators-in-depth)
🎥 💵 - André Staltz

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/zip.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/zip.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/zip.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/zip.ts)
5 changes: 2 additions & 3 deletions operators/complete.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ _[Prefer a split by operator type?](README.md)_
- [takeWhile](filtering/takewhile.md)
- [throttle](filtering/throttle.md)
- [throttleTime](filtering/throttletime.md)
- [throw](creation/throw.md)
- [throwError](creation/throwError.md)
- [timeInterval](utility/timeinterval.md)
- [timeout](utility/timeout.md)
- [timeoutWith](utility/timeoutwith.md)
Expand All @@ -106,7 +106,6 @@ _[Prefer a split by operator type?](README.md)_

### Additional Resources

- [What Are Operators?](http://reactivex.io/rxjs/manual/overview.html#operators)
📰 - Official Docs
- [What Are Operators?](https://rxjs-dev.firebaseapp.com/guide/operators#what-are-operators) 📰 - Official Docs
- [What Operators Are](https://egghead.io/lessons/rxjs-what-rxjs-operators-are)
🎥 💵 - André Staltz
5 changes: 2 additions & 3 deletions operators/conditional/defaultifempty.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,9 @@ const subscribe = example.subscribe(val => console.log(val));

### Additional Resources

- [defaultIfEmpty](https://rxjs.dev/api/operators/defaultIfEmpty) 📰 - Official
docs
- [defaultIfEmpty](https://rxjs.dev/api/operators/defaultIfEmpty) 📰 - Official docs

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/defaultIfEmpty.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/defaultIfEmpty.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/defaultIfEmpty.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/defaultIfEmpty.ts)
2 changes: 1 addition & 1 deletion operators/conditional/every.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ apiCalls$.subscribe();
---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/every.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/every.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/every.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/every.ts)
2 changes: 1 addition & 1 deletion operators/conditional/iif.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ interval(1000)
---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/observable/iif.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/observable/iif.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/iif.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/observable/iif.ts)
5 changes: 2 additions & 3 deletions operators/conditional/sequenceequal.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ fromEvent(document, 'keydown')

### Additional Resources

- [sequenceEqual](https://rxjs.dev/api/operators/sequenceEqual) 📰 - Official
docs
- [sequenceEqual](https://rxjs.dev/api/operators/sequenceEqual) 📰 - Official docs

---

> 📁 Source Code:
> [https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/sequenceEqual.ts](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/sequenceEqual.ts)
> [https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/sequenceEqual.ts](https://github.com/ReactiveX/rxjs/blob/master/packages/rxjs/src/internal/operators/sequenceEqual.ts)
2 changes: 1 addition & 1 deletion operators/creation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ generic to specific use-cases you are free, and encouraged, to turn
- [interval](interval.md)
- [of](of.md) ⭐
- [range](range.md)
- [throw](throw.md)
- [throwError](throwError.md)
- [timer](timer.md)

⭐ - _commonly used_
Expand Down
Loading