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

Commit d77106d

Browse files
Fixing Issue #939
1 parent e936e9e commit d77106d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

doc/api/core/operators/find.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Searches for an element that matches the conditions defined by the specified pre
1010
2. `[thisArg]` *(`Any`)*: Object to use as `this` when executing the predicate.
1111

1212
#### Returns
13-
*(`Observable`)*: An Observable sequence with the first element that matches the conditions defined by the specified predicate, if found; otherwise, undefined.
13+
*(`Observable`)*: An Observable sequence with the first element that matches the conditions defined by the specified predicate, if found; otherwise, an empty sequence.
1414

1515
#### Example
1616
```js
@@ -51,7 +51,6 @@ var subscription = source.subscribe(
5151
console.log('Completed');
5252
});
5353

54-
// => Next: undefined
5554
// => Completed
5655
```
5756

0 commit comments

Comments
 (0)