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>;