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

Commit 34852fc

Browse files
Adding more to error docs
1 parent 2c8b6f7 commit 34852fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/gettingstarted/errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ This isn't the only way to handle errors as there are plenty of others as you'll
8888

8989
## Ignoring Errors with `onErrorResumeNext` ##
9090

91-
The Reactive Extensions borrowed from a number of languages in our design. One of those features is bringing []`On Error Resume Next`](https://msdn.microsoft.com/en-us/library/5hsw66as.aspx) from Microsoft Visual Basic. This operation specifies that when a run-time error occurs, control goes to the statement immediately following the statement where the error occurred, and execution continues from that point. There are some instances with stream processing that you simply want to skip a stream which produces an error and move to the next stream. We can achieve this with a class based and instance based `onErrorResumeNext` method.
91+
The Reactive Extensions borrowed from a number of languages in our design. One of those features is bringing [`On Error Resume Next`](https://msdn.microsoft.com/en-us/library/5hsw66as.aspx) from Microsoft Visual Basic. This operation specifies that when a run-time error occurs, control goes to the statement immediately following the statement where the error occurred, and execution continues from that point. There are some instances with stream processing that you simply want to skip a stream which produces an error and move to the next stream. We can achieve this with a class based and instance based `onErrorResumeNext` method.
9292

9393
The class based `onErrorResumeNext` continues a stream that is terminated normally or by an `Error` with the next stream or `Promise`. Unlike `catch`, `onErrorResumeNext` will continue to the next sequence regardless of whether the previous was in error or not. To make this more concrete, let's use a simple example of mixing error sequences with normal sequences.
9494

0 commit comments

Comments
 (0)