Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error documentation #272

Merged
merged 1 commit into from
Nov 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,8 @@ How to use the [assert API](doc/assert.md) to write unit tests while using RxGo.
* [Sum](doc/sum.md) — calculate the sum of numbers emitted by an Observable and emit this sum

### Operators to Convert Observables
* [Error](doc/error.md)/[Errors](doc/errors.md) — convert an observable into an eventual error or list of errors
* [Error](doc/error.md) — return the first error thrown by an observable
* [Errors](doc/errors.md) — return all the errors thrown by an observable
* [ToMap](doc/tomap.md)/[ToMapWithValueSelector](doc/tomapwithvalueselector.md)/[ToSlice](doc/toslice.md) — convert an Observable into another object or data structure

## Contributions
Expand Down
2 changes: 1 addition & 1 deletion doc/error.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Overview

Return the eventual Observable error.
Return the first error thrown by an Observable.

This method is blocking.

Expand Down
2 changes: 1 addition & 1 deletion doc/errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Overview

Return the eventual Observable errors.
Return all the errors thrown by an Observable.

This method is blocking.

Expand Down