Iterative docs fix

This commit is contained in:
AF 2023-04-27 07:40:05 +00:00
parent a791fb818f
commit 2a2ea431ac

View File

@ -39,9 +39,9 @@ pub type IterativeWrapped<'a, G> = <<G as Iterative<'a>>::T as WeakFunctor>::F<
/// Value passed to [`Monad::iibind`].
pub trait Iterative<'a>: 'a + Sized {
/// [`ControlFlow::Continue`]
/// [`ControlFlow::Continue`].
type A: 'a;
/// [`ControlFlow::Break`]
/// [`ControlFlow::Break`].
type B: 'a;
/// Corresponding [`WeakFunctor`].
type T: 'a + ?Sized + WeakFunctor;