From dbc0a71c6476766a681c1655c48f0c145c360c75 Mon Sep 17 00:00:00 2001 From: Michael Bull Date: Thu, 1 Nov 2018 19:12:52 +0000 Subject: [PATCH] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.