From 426324513d74eb13f7146f9ee3e1fe6f5b88c5af Mon Sep 17 00:00:00 2001 From: Kelly Marchewa Date: Sat, 2 Jun 2018 16:56:47 -0500 Subject: [PATCH] docs: update rxjs link to version 6 (#24269) PR Close #24269 --- aio/content/guide/rx-library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/rx-library.md b/aio/content/guide/rx-library.md index c0b1418663..e562d8ed35 100644 --- a/aio/content/guide/rx-library.md +++ b/aio/content/guide/rx-library.md @@ -45,7 +45,7 @@ The `pipe()` function is also a method on the RxJS `Observable`, so you use this ### Common operators -RxJS provides many operators (over 150 of them), but only a handful are used frequently. Here is a list of common operators; for usage examples, see [RxJS 5 Operators By Example](https://github.com/btroncone/learn-rxjs/blob/master/operators/complete.md) in RxJS documentation. +RxJS provides many operators, but only a handful are used frequently. For a list of operators and usage samples, visit the [RxJS API Documentation](https://rxjs-dev.firebaseapp.com/api).
Note that, for Angular apps, we prefer combining operators with pipes, rather than chaining. Chaining is used in many RxJS examples.