From 28e3674eda092c8d4bc83a1606c97dadfba22fd6 Mon Sep 17 00:00:00 2001 From: Sean Collins Date: Wed, 2 Feb 2022 14:22:22 -0400 Subject: [PATCH] Remove quotes from link --- docsite/source/extensions/monads.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/source/extensions/monads.html.md b/docsite/source/extensions/monads.html.md index b117543..f6d8092 100644 --- a/docsite/source/extensions/monads.html.md +++ b/docsite/source/extensions/monads.html.md @@ -4,7 +4,7 @@ layout: gem-single name: dry-types --- -The `:monads` extension provides a `#to_monad` method that returns a `Result` compatible with [`dry-monads`]('/gems/dry-monads/'). +The `:monads` extension provides a `#to_monad` method that returns a `Result` compatible with [`dry-monads`](/gems/dry-monads/). The `.try` method returns a simple `Result` that's defined within `dry-types` (i.e. `Dry::Types::Result`). If you want to use the result with `dry-monads`, you can load this extension and call `#to_monad` on the `Dry::Types::Result` to get a `Result` that's defined in `dry-monads` (i.e. `Dry::Monads::Result`). This will let you use the `dry-monads` methods on the result.