diff --git a/README.md b/README.md index 6f93079..de5975a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ dependencies { The [`Result`][result] monad has two subtypes, [`Ok`][result-ok] representing success and containing a `value`, and [`Err`][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 introduction to the benefits of modelling operations using the `Result` type.