Update README

This commit is contained in:
Michael Bull 2018-11-01 19:12:52 +00:00
parent 8bcfaac337
commit dbc0a71c64
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ dependencies {
The [`Result`][result] monad has two subtypes, [`Ok<V>`][result-ok] The [`Result`][result] monad has two subtypes, [`Ok<V>`][result-ok]
representing success and containing a `value`, and [`Err<E>`][result-err], representing success and containing a `value`, and [`Err<E>`][result-err],
representing an error and containing an `error` value. representing failure and containing an `error`.
Scott Wlaschin's article on [Railway Oriented Programming][swalschin-rop] is a great Scott Wlaschin's article on [Railway Oriented Programming][swalschin-rop] is a great
introduction to the benefits of modelling operations using the `Result` type. introduction to the benefits of modelling operations using the `Result` type.