Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit d7b820c

Browse files
committed
Update finally.md
It seems that the arguments section was copied over from where/filter. It threw me off for a moment...
1 parent 93e36a2 commit d7b820c

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

doc/api/core/operators/finally.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,10 @@
44
Invokes a specified action after the source observable sequence terminates gracefully or exceptionally. There is an alias called `finallyAction` for browsers <IE9
55

66
#### Arguments
7-
1. `predicate` *(`Function`)*: A function to test each source element for a condition; The callback is called with the following information:
8-
1. the value of the element
9-
2. the index of the element
10-
3. the Observable object being subscribed
11-
2. `[thisArg]` *(`Any`)*: Object to use as `this` when executing the predicate.
7+
1. `action` *(`Function`)*: A function to invoke after the source observable sequence terminates.
128

139
#### Returns
14-
*(`Observable`)*: An observable sequence that contains elements from the input sequence that satisfy the condition.
10+
*(`Observable`)*: The source sequence with the side-effecting behavior applied.
1511

1612
#### Example
1713
```js

0 commit comments

Comments
 (0)