diff --git a/doc/introduction.md b/doc/introduction.md index 44d7a09b3b..e44e38150e 100644 --- a/doc/introduction.md +++ b/doc/introduction.md @@ -64,7 +64,7 @@ fromEvent(button, 'click') .subscribe(count => console.log(`Clicked ${count} times`)); ``` -The **scan** operator works just like **reduce** for arrays. It takes a value which is exposed to a callback. The returned value of the callback will then become the next value exposed the next time the callback runs. +The [**scan**](/api/operators/scan) operator works similarly to [**reduce**](/api/operators/reduce) for arrays, except it emits every accumulated value instead of only the final one. It takes a value which is exposed to a callback. The returned value of the callback will then become the next value exposed the next time the callback runs. ### Flow