From d66dd19d161d9bd21f9b4d687ceac861716843d0 Mon Sep 17 00:00:00 2001 From: timofey Date: Fri, 30 Jun 2023 23:54:43 +0000 Subject: [PATCH] improve `Context::Fallible` docs --- src/rcore/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore/context.rs b/src/rcore/context.rs index fbe8685..4c1f0dd 100644 --- a/src/rcore/context.rs +++ b/src/rcore/context.rs @@ -7,7 +7,7 @@ pub trait Context<'a>: FunctorContext<'a, T = Self::_Tm> { /// Type to provide for [Monad]ic representation of computation, mostly that of resolution ([`Resolution`]). type _Tm: Monad<'a>; - /// Type to allow improved support for result evaluation. + /// Type to allow improved support for [`Result`] evaluation. /// This is important for async applications stopping early. type Fallible: MonadFailAny<'a, T = Self::T>;